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

# List calls

`GET /v1/calls`

Returns paginated call records for a workspace. Filter by direction, missed status, source, or phone number to narrow the result set.

## Query parameters

- `workspace_id` string, required — Workspace to query.
- `limit` integer
- `cursor` string
- `order` 'asc' | 'desc'
- `direction` 'inbound' | 'outbound'
- `missed` 'true' | 'false'
- `source` 'app' | 'retell'
- `phone_number` string

## Response `200`

Calls

- object — Cursor-paginated calls response.
  - `data` object[], required
    - `id` string, required
    - `workspace_id` string, required
    - `contact_id` string, nullable, required
    - `conversation_id` string, nullable, required
    - `ticket_id` string, nullable, required
    - `call_id` string, required
    - `direction` 'inbound' | 'outbound', required
    - `from_phone` string, required
    - `to_phone` string, nullable, required
    - `source` string, nullable, required
    - `is_missed` boolean, nullable, required
    - `transfer_status` string, nullable, required
    - `duration_ms` number, nullable, required
    - `sentiment` string, nullable, required
    - `summary` string, nullable, required
    - `recording_url` string, nullable, required
    - `started_at` string, required
    - `created_at` string, required
    - `call_status` object, nullable, required
      - `success` boolean, required
      - `is_voicemail_reached` boolean, nullable, required
      - `is_transferred` boolean, nullable, required
  - `next_cursor` string, nullable, required
  - `has_more` boolean, required

## Other responses

- `400` — Invalid request
- `401` — Unauthorized
- `403` — Forbidden
- `429` — Rate limit exceeded

---

[API](https://skmtc.dev/conduit/apis/conduit-api.md) · [All operations](https://skmtc.dev/conduit/apis/conduit-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/conduit/conduit-api/revisions/3ad7e17f96ad/schema)
