> ## 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 Twilio Owned Numbers

> List Twilio Owned 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>

***

### 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="sid" type="string">
      Twilio SID
    </ResponseField>

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

    <ResponseField name="friendly_name" type="string">
      Friendly label
    </ResponseField>

    <ResponseField name="status" type="string">
      Number status
    </ResponseField>

    <ResponseField name="date_created" type="string">
      Date created in Twilio
    </ResponseField>

    <ResponseField name="voice" type="boolean">
      Voice capability enabled
    </ResponseField>

    <ResponseField name="sms" type="boolean">
      SMS capability enabled
    </ResponseField>

    <ResponseField name="mms" type="boolean">
      MMS capability enabled
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "message": "Request completed successfully",
    "data": [
      {
        "sid": "example",
        "phone_number": "+14155550100",
        "friendly_name": "Support Bot",
        "status": "active",
        "date_created": "example",
        "voice": true,
        "sms": true,
        "mms": true
      }
    ]
  }
  ```
</ResponseExample>


## OpenAPI

````yaml GET /api/v1/phone-numbers/twilio-owned-numbers/
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/twilio-owned-numbers/:
    get:
      tags:
        - PhoneService
      summary: List Twilio Owned Numbers
      operationId: ListTwilioOwnedNumbers
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListTwilioOwnedNumbersResponse'
components:
  schemas:
    ListTwilioOwnedNumbersResponse:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        data:
          type: array
          items:
            type: object
            properties:
              sid:
                type: string
                description: Twilio SID
              phone_number:
                type: string
                description: Phone number in E.164 format
              friendly_name:
                type: string
                description: Friendly label
              status:
                type: string
                description: Number status
              date_created:
                type: string
                description: Date created in Twilio
              voice:
                type: boolean
                description: Voice capability enabled
              sms:
                type: boolean
                description: SMS capability enabled
              mms:
                type: boolean
                description: MMS capability enabled
  securitySchemes:
    X-Api-Key:
      type: apiKey
      in: header
      name: X-Api-Key

````