Skip to main content
GET
/
calls
List Calls
curl --request GET \
  --url https://api.truedy.ai/api/public/v1/calls \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "call_a1b2c3d4",
      "status": "completed",
      "direction": "outbound",
      "agent_id": "agt_f9447372",
      "to": "+12125551234",
      "from": "+18005559876",
      "duration_seconds": 142,
      "recording_url": "https://recordings.truedy.ai/call_a1b2c3d4.mp3",
      "transcript_url": "https://api.truedy.ai/calls/call_a1b2c3d4/transcript",
      "summary": "Customer inquired about refund policy. Issue resolved.",
      "cost_credits": 24,
      "metadata": {
        "campaign_id": "batch_c3d4e5f6",
        "contact_id": "cnt_d4e5f6a7"
      },
      "started_at": "2026-04-05T10:00:00Z",
      "ended_at": "2026-04-05T10:02:22Z",
      "created_at": "2026-04-05T09:59:58Z",
      "updated_at": "2026-04-05T10:02:22Z"
    },
    {
      "id": "call_b2c3d4e5",
      "status": "failed",
      "direction": "outbound",
      "agent_id": "agt_f9447372",
      "to": "+15559876543",
      "from": "+18005559876",
      "duration_seconds": 142,
      "recording_url": "https://recordings.truedy.ai/call_a1b2c3d4.mp3",
      "transcript_url": "https://api.truedy.ai/calls/call_a1b2c3d4/transcript",
      "summary": "Customer inquired about refund policy. Issue resolved.",
      "cost_credits": 24,
      "metadata": {
        "campaign_id": "batch_c3d4e5f6",
        "contact_id": "cnt_d4e5f6a7"
      },
      "started_at": "2026-04-05T10:00:00Z",
      "ended_at": "2026-04-05T10:02:22Z",
      "created_at": "2026-04-05T09:59:58Z",
      "updated_at": "2026-04-05T10:02:22Z"
    }
  ],
  "meta": {
    "request_id": "req_32e7531c",
    "ts": "2026-04-05T10:22:00Z"
  },
  "pagination": {
    "total": 24,
    "limit": 50,
    "offset": 0,
    "has_more": false
  }
}

Authorizations

Authorization
string
header
required

API key authentication. Include your API key in the Authorization header: Bearer <your_api_key>

Query Parameters

agent_id
string

Filter by agent ID

status
enum<string>

Filter by call status

Available options:
queued,
ringing,
in_progress,
completed,
failed
limit
integer
default:50

Maximum results per page (1-100)

Required range: 1 <= x <= 100
offset
integer
default:0

Number of results to skip

Required range: x >= 0

Response

List of calls

data
object[]
required
meta
object
required
pagination
object