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

# List Numbers



## OpenAPI

````yaml get /v1/numbers/list
openapi: 3.0.2
info:
  title: Vocode Hosted API
  description: |2-

            Vocode's Hosted API helps you automate phone calls in minutes. 🚀

            ## Numbers

            You can buy phone lines and place agents on them.

            ## Calls

            You can start, end, and get information about calls.
            
  termsOfService: http://example.com/terms/
  contact:
    name: Support
    email: support@vocode.dev
  version: 1.0.0
servers:
  - url: https://api.vocode.dev
    description: Production environment
  - url: https://staging.vocode.dev
    description: Staging environment
security: []
tags:
  - name: numbers
    description: Operations with phone numbers.
  - name: calls
    description: Manage calls.
paths:
  /v1/numbers/list:
    get:
      tags:
        - numbers
      summary: List Numbers
      operationId: list_numbers
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                title: Response List Numbers V1 Numbers List Get
                type: array
                items:
                  $ref: '#/components/schemas/NormalizedPhoneNumber'
      security:
        - HTTPBearer: []
components:
  schemas:
    NormalizedPhoneNumber:
      title: NormalizedPhoneNumber
      required:
        - id
        - user_id
        - inbound_agent
        - number
      type: object
      properties:
        id:
          title: Id
          type: string
          format: uuid
        user_id:
          title: User Id
          type: string
          format: uuid
        active:
          title: Active
          type: boolean
          default: true
        inbound_agent:
          title: Inbound Agent
          type: string
          format: uuid
        number:
          title: Number
          type: string
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````