---
title: "List Calls"
method: GET
path: "/v1/calls/list"
tags: ["calls"]
---

# List Calls

`GET /v1/calls/list`

## Query parameters

- `page` integer
- `size` integer
- `sort_column` string, nullable
- `sort_desc` boolean, nullable

## Response `200`

Successful Response

- CallPage
  - `items` NormalizedCall[], required
    - `id` string, uuid, required
    - `user_id` string, uuid, required
    - `status` 'not_started' | 'in_progress' | 'error' | 'ended'
    - `error_message` string, nullable
    - `recording_available` boolean
    - `transcript` string, nullable
    - `human_detection_result` 'human' | 'no_human', nullable
    - `do_not_call_result` boolean, nullable
    - `telephony_id` string, nullable
    - `stage` 'created' | 'picked_up' | 'transfer_started' | 'transfer_successful', nullable
    - `stage_outcome` 'human_unanswered' | 'call_did_not_connect' | 'human_disconnected' | 'bot_disconnected' | 'transfer_unanswered' | 'transfer_disconnected', nullable
    - `telephony_metadata` union
      - VonageTelephonyMetadata
        - `type` 'telephony_metadata_vonage'
      - TwilioTelephonyMetadata
        - `type` 'telephony_metadata_twilio'
        - `call_sid` string, nullable
        - `call_status` string, nullable
        - `transfer_call_sid` string, nullable
        - `transfer_call_status` string, nullable
        - `conference_sid` string, nullable
    - `start_time` number, nullable
    - `end_time` number, nullable
    - `to_number` string, required
    - `from_number` string, required
    - `agent` string, uuid, required
    - `telephony_provider` 'vonage' | 'twilio', required
    - `agent_phone_number` string, required
    - `hipaa_compliant` boolean
    - `on_no_human_answer` 'continue' | 'hangup', nullable
    - `context` object, nullable
    - `run_do_not_call_detection` boolean, nullable
    - `telephony_account_connection` union
      - string, uuid
      - TwilioAccountConnection
        - `id` string, uuid, required
        - `user_id` string, uuid, required
        - `credentials` TwilioCredentials, required
          - `twilio_account_sid` string, required
          - `twilio_auth_token` string, required
        - `type` 'account_connection_twilio', required
        - `steering_pool` string[]
        - `account_supports_any_caller_id` boolean
    - `telephony_params` object, nullable
  - `page` integer, required
  - `size` integer, required
  - `has_more` boolean, required
  - `total` integer, required
  - `total_is_estimated` boolean, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/vocodedev/apis/vocode-hosted-api.md) · [All operations](https://skmtc.net/vocodedev/apis/vocode-hosted-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/vocodedev/vocode-hosted-api/revisions/ffca17c004e2/schema)
