> ## Documentation Index
> Fetch the complete documentation index at: https://developers.nativehub.live/llms.txt
> Use this file to discover all available pages before exploring further.

# List segments

> Retrieve paginated list of contact segments



## OpenAPI

````yaml GET /segments
openapi: 3.0.3
info:
  title: NativeMessage API
  version: 1.0.0
  description: Complete API documentation for NativeMessage platform
  contact:
    name: NativeMessage Support
    email: support@nativemessage.com
servers:
  - url: https://api-message.nativehub.live/api/v1
    description: Production server
security:
  - BearerAuth: []
  - ApiKeyAuth: []
paths:
  /segments:
    get:
      tags:
        - Segments
      summary: List segments
      description: Retrieve paginated list of contact segments
      operationId: listSegments
      parameters:
        - $ref: '#/components/parameters/PageParam'
        - $ref: '#/components/parameters/PerPageParam'
      responses:
        '200':
          description: Segments retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedSegments'
components:
  parameters:
    PageParam:
      name: page
      in: query
      description: Page number (default 1)
      schema:
        type: integer
        default: 1
        minimum: 1
    PerPageParam:
      name: per_page
      in: query
      description: Items per page (default 20, max 100)
      schema:
        type: integer
        default: 20
        minimum: 1
        maximum: 100
  schemas:
    PaginatedSegments:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Segment'
        total:
          type: integer
        page:
          type: integer
        per_page:
          type: integer
    Segment:
      type: object
      properties:
        id:
          type: string
          format: uuid
        tenant_id:
          type: string
          format: uuid
        name:
          type: string
        conditions:
          type: object
        contact_count:
          type: integer
        created_at:
          type: string
          format: date-time
      example:
        id: e7f8a9b0-c1d2-3456-ef78-901234567890
        tenant_id: c3d4e5f6-a7b8-9012-cdef-123456789012
        name: Premium Customers
        conditions:
          tags:
            segment: premium
          region:
            - dhaka
            - chittagong
        contact_count: 1250
        created_at: '2026-02-05T10:00:00Z'
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````