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

# List calls

> List calls for your team with optional filters and cursor pagination.



## OpenAPI

````yaml /openapi.yaml get /api/v1/calls
openapi: 3.1.0
info:
  title: Voxworks API
  version: 1.0.0
  description: >-
    Public REST API for creating contacts, scheduling calls, retrieving call
    results, managing lists and objects, and receiving automation webhooks.
servers:
  - url: https://api.voxworks.ai
    description: Production
security:
  - BearerAuth: []
tags:
  - name: Health
  - name: Contacts
  - name: Calls
  - name: Lists
  - name: Objects
  - name: Webhooks
paths:
  /api/v1/calls:
    get:
      tags:
        - Calls
      summary: List calls
      description: List calls for your team with optional filters and cursor pagination.
      operationId: listCalls
      parameters:
        - name: status
          in: query
          schema:
            type: string
        - name: type
          in: query
          schema:
            type: string
            enum:
              - outbound
              - inbound
              - web
        - name: progress
          in: query
          schema:
            type: string
        - name: contact_id
          in: query
          schema:
            type: string
        - name: script_id
          in: query
          schema:
            type: string
        - name: created_after
          in: query
          schema:
            type: string
            format: date-time
        - name: created_before
          in: query
          schema:
            type: string
            format: date-time
        - name: cursor
          in: query
          description: Use `meta.next_cursor` from the previous response.
          schema:
            type: string
            format: date-time
        - name: limit
          in: query
          schema:
            type: integer
            default: 100
            minimum: 1
            maximum: 500
      responses:
        '200':
          description: Calls returned.
          content:
            application/json:
              schema:
                type: object
                required:
                  - success
                  - calls
                  - meta
                properties:
                  success:
                    type: boolean
                    example: true
                  calls:
                    type: array
                    items:
                      $ref: '#/components/schemas/Call'
                  meta:
                    type: object
                    properties:
                      limit:
                        type: integer
                      total:
                        type: integer
                      next_cursor:
                        type:
                          - string
                          - 'null'
                        format: date-time
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '429':
          $ref: '#/components/responses/RateLimited'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  schemas:
    Call:
      type: object
      additionalProperties: true
      properties:
        id:
          type: string
        team_id:
          type: string
        contact_id:
          type: string
        script_id:
          type: string
        type:
          type: string
        status:
          type: string
        progress:
          type:
            - string
            - 'null'
        scheduled_time:
          type:
            - string
            - 'null'
          format: date-time
        actual_time:
          type:
            - string
            - 'null'
          format: date-time
        end_time:
          type:
            - string
            - 'null'
          format: date-time
        duration:
          type:
            - integer
            - 'null'
        end_reason:
          type:
            - string
            - 'null'
        call_summary:
          type:
            - string
            - 'null'
        structured_data:
          type:
            - object
            - 'null'
          additionalProperties: true
        transcript:
          type:
            - string
            - 'null'
        recording_url:
          type:
            - string
            - 'null'
        objectives:
          type:
            - array
            - 'null'
          items:
            type: object
            additionalProperties: true
    ErrorResponse:
      type: object
      required:
        - success
        - message
      properties:
        success:
          type: boolean
          example: false
        message:
          type: string
  responses:
    BadRequest:
      description: Missing or invalid request data.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Unauthorized:
      description: Missing, malformed, or invalid authorization.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          examples:
            invalid:
              value:
                success: false
                message: Invalid API key
    RateLimited:
      description: Rate limit exceeded.
      headers:
        Retry-After:
          schema:
            type: string
        X-RateLimit-Limit:
          schema:
            type: string
        X-RateLimit-Remaining:
          schema:
            type: string
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            success: false
            message: Rate limit exceeded
    InternalServerError:
      description: Internal server error.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            success: false
            message: Internal server error
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key
      description: 'API key from Voxworks, sent as `Authorization: Bearer YOUR_API_KEY`.'

````