> ## 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 Calls



## OpenAPI

````yaml get /v1/calls/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/calls/list:
    get:
      tags:
        - calls
      summary: List Calls
      operationId: list_calls
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                title: Response List Calls V1 Calls List Get
                type: array
                items:
                  $ref: '#/components/schemas/NormalizedCall'
      security:
        - HTTPBearer: []
components:
  schemas:
    NormalizedCall:
      title: NormalizedCall
      required:
        - id
        - user_id
        - to_number
        - from_number
        - agent
      type: object
      properties:
        id:
          title: Id
          type: string
          format: uuid
        user_id:
          title: User Id
          type: string
          format: uuid
        status:
          allOf:
            - $ref: '#/components/schemas/CallStatus'
          default: not_started
        error_message:
          title: Error Message
          type: string
        recording_available:
          title: Recording Available
          type: boolean
          default: false
        transcript:
          title: Transcript
          type: string
        to_number:
          title: To Number
          type: string
        from_number:
          title: From Number
          type: string
        agent:
          title: Agent
          type: string
          format: uuid
    CallStatus:
      title: CallStatus
      enum:
        - not_started
        - in_progress
        - error
        - ended
      type: string
      description: An enumeration.
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````