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

# List imported Twilio numbers



## OpenAPI

````yaml get /v1/twilio/numbers
openapi: 3.0.3
info:
  title: Vatel AI REST API
  description: >-
    Programmatic access for agents, telephony, and session tokens. Send
    `Authorization: Bearer <organization API key>` on all requests unless noted.
    Most error responses return JSON with an `error` string message.
  version: 0.2.4
servers:
  - url: https://api.vatel.ai
    description: Production
security:
  - bearerAuth: []
tags:
  - name: organization
    description: Organization tied to your API key
  - name: llms
    description: LLM model identifiers
  - name: voices
    description: TTS voice catalog
  - name: agents
    description: Agents, outbound dial, agent versions
  - name: twilio
    description: Imported Twilio phone numbers
  - name: sip-trunks
    description: SIP trunk configuration
  - name: session
    description: Session tokens and voice WebSocket connections.
  - name: calls
    description: Call history, recordings, and live eavesdrop for your organization
  - name: eavesdrop
    description: Listen to live calls and send supervisor commands over WebSocket.
paths:
  /v1/twilio/numbers:
    get:
      tags:
        - twilio
      summary: List imported Twilio numbers
      operationId: listTwilioNumbers
      responses:
        '200':
          description: Phone numbers
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TwilioPhoneNumber'
        '401':
          description: Unauthorized
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    TwilioPhoneNumber:
      type: object
      description: A Twilio number linked to your organization for voice agents.
      properties:
        id:
          type: string
          format: uuid
          description: App record id for this import.
        phone_number:
          type: string
          description: E.164 number.
        phone_sid:
          type: string
          description: Twilio IncomingPhoneNumber sid.
        label:
          type: string
          description: Friendly name in your project.
        account_sid:
          type: string
          description: Twilio account this number belongs to.
        created_at:
          type: string
          description: Created timestamp (string form).
        updated_at:
          type: string
          description: Last update timestamp (string form).
    ErrorResponse:
      type: object
      description: Standard error body for most non-2xx JSON responses on this API.
      required:
        - error
      properties:
        error:
          type: string
          description: Human-readable message; may include validation detail.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: 'Send your organization API key as `Authorization: Bearer <key>`.'

````