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

# List Available Numbers

> List Available Numbers.

### Authorizations

<ParamField header="X-Api-Key" type="string" required>
  Your Agni API key used to authenticate the request. Pass it in the `X-Api-Key` header. Find or rotate it from your Ravan AI account settings.
</ParamField>

***

### Path Parameters

<ParamField path="iso_country" type="string" required>
  The ISO 3166-1 alpha-2 country code. Example: `US`.
</ParamField>

***

### Query Parameters

<ParamField query="page_size" type="integer">
  The number of records to return per page.
</ParamField>

<ParamField query="region" type="string">
  Filters available numbers by region, state, province, or locality when supported.
</ParamField>

***

### Response

<ResponseField name="success" type="boolean">
  Whether the request succeeded.
</ResponseField>

<ResponseField name="message" type="string">
  Human-readable status message.
</ResponseField>

<ResponseField name="data" type="object[]">
  Returned data.

  <Expandable title="data[]">
    <ResponseField name="iso_country" type="string">
      ISO country code
    </ResponseField>

    <ResponseField name="phone_number" type="string">
      Phone number in E.164 format
    </ResponseField>

    <ResponseField name="price" type="integer">
      Monthly cost of the number
    </ResponseField>

    <ResponseField name="per_minute_price_outbound" type="integer">
      Per-minute price for outbound calls
    </ResponseField>

    <ResponseField name="per_minute_price_inbound" type="integer">
      Per-minute price for inbound calls
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "message": "Request completed successfully",
    "data": [
      {
        "iso_country": "US",
        "phone_number": "+14155550100",
        "price": 1,
        "per_minute_price_outbound": 1,
        "per_minute_price_inbound": 1
      }
    ]
  }
  ```
</ResponseExample>


## OpenAPI

````yaml GET /api/v1/phone-numbers/available-numbers/{iso_country}/
openapi: 3.0.1
info:
  title: Agni API
  version: 1.0.0
  description: >-
    Agni API for managing agents, tools, widget settings, telephony, and
    integrations.
servers:
  - url: https://api.ravan.ai
security:
  - X-Api-Key: []
tags:
  - name: AgentService
  - name: AgentToolService
  - name: WidgetSettingsService
  - name: PhoneService
  - name: AppointmentService
  - name: GHLService
  - name: CalComService
  - name: CampaignService
  - name: ContactService
  - name: CallingService
  - name: RAGService
  - name: ModelService
  - name: HealthService
paths:
  /api/v1/phone-numbers/available-numbers/{iso_country}/:
    get:
      tags:
        - PhoneService
      summary: List Available Numbers
      operationId: ListAvailableNumbers
      parameters:
        - name: iso_country
          in: path
          required: true
          schema:
            type: string
          description: ISO country code (e.g. US, GB)
        - name: page_size
          in: query
          schema:
            type: integer
            format: int32
          description: Number of results per page
        - name: region
          in: query
          schema:
            type: string
          description: Region filter
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListAvailableNumbersResponse'
components:
  schemas:
    ListAvailableNumbersResponse:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        data:
          type: array
          items:
            $ref: '#/components/schemas/PhoneNumber'
    PhoneNumber:
      type: object
      properties:
        iso_country:
          type: string
          description: ISO country code
        phone_number:
          type: string
          description: Phone number in E.164 format
        price:
          type: integer
          format: int32
          description: Monthly cost of the number
        per_minute_price_outbound:
          type: integer
          format: int32
          description: Per-minute price for outbound calls
        per_minute_price_inbound:
          type: integer
          format: int32
          description: Per-minute price for inbound calls
  securitySchemes:
    X-Api-Key:
      type: apiKey
      in: header
      name: X-Api-Key

````