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

# List Numbers

> List the telephony numbers available to your organization

Returns the numbers available to you. Behavior depends on the `Org-Handle` header:

* **With Org-Handle** — returns your organization's own numbers (any state) plus the shared
  unassigned pool (`NOT_ASSIGNED`).
* **Without Org-Handle** — returns only the shared unassigned pool.

Use a number's `id` when attaching it to a [trunk](/telephony/trunks/attach-numbers).

<Note>
  **Prerequisites:** API Token. See [Authentication](/api/get-started/authentication).
</Note>

### Headers

| Name          | Type   | Required | Description                |
| ------------- | ------ | -------- | -------------------------- |
| Authorization | string | Yes      | `Token <your-api-key>`     |
| Org-Handle    | string | No       | Organization domain handle |

### Number object fields

| Field  | Type    | Description                                 |
| ------ | ------- | ------------------------------------------- |
| id     | integer | Unique number id (use this in attach calls) |
| number | string  | Phone number in E.164 format                |
| state  | string  | `NOT_ASSIGNED` or `ASSIGNED`                |
| active | boolean | Whether the number is usable                |

<ResponseExample>
  ```json 200 theme={null}
  {
    "status_code": 200,
    "message": "Telephony numbers fetched successfully.",
    "data": [
      { "id": 501, "number": "+15551234567", "state": "NOT_ASSIGNED", "active": true }
    ]
  }
  ```
</ResponseExample>

```bash cURL theme={null}
curl -s "https://unpod.ai/api/v2/platform/telephony/numbers/" \
  -H "Authorization: Token <your-api-key>" \
  -H "Org-Handle: <your-org-handle>"
```


## OpenAPI

````yaml GET /api/v2/platform/telephony/numbers/
openapi: 3.0.3
info:
  title: Unpod API
  description: REST API for Unpod Voice AI Platform
  version: 2.0.0
servers:
  - url: https://unpod.ai/
    description: QA
  - url: https://unpod.ai/
    description: Production
security: []
tags:
  - name: Organisation
  - name: Spaces
  - name: Agents
  - name: Tasks
  - name: Runs
  - name: Call Logs
  - name: Analytics
  - name: Providers
  - name: Bridges
  - name: Numbers
  - name: Trunks
  - name: Telephony
  - name: Billing
paths:
  /api/v2/platform/telephony/numbers/:
    get:
      tags:
        - Bridges
      summary: Get Telephony Numbers
      description: >
        List telephony numbers. With Org-Handle: org's own numbers (any state) +
        pool (NOT_ASSIGNED). Without Org-Handle: pool numbers only.
      operationId: getTelephonyNumbers
      parameters:
        - name: Org-Handle
          in: header
          required: false
          schema:
            type: string
          description: Organization domain handle. Omit to list pool numbers only.
      responses:
        '200':
          description: List of telephony numbers
          content:
            application/json:
              example:
                status_code: 200
                message: Telephony numbers fetched successfully.
                data:
                  - id: 501
                    number: '+15551234567'
                    state: ASSIGNED
                    active: true
                  - id: 502
                    number: '+15559876543'
                    state: NOT_ASSIGNED
                    active: true
        '401':
          $ref: '#/components/responses/Unauthorized'
      security:
        - TokenAuth: []
components:
  responses:
    Unauthorized:
      description: Unauthorized - Invalid or missing API token
      content:
        application/json:
          example:
            status_code: 401
            message: Authentication credentials were not provided.
  securitySchemes:
    TokenAuth:
      type: apiKey
      in: header
      name: Authorization
      description: 'Format: Token <your-api-key>'

````