Skip to main content
GET
/
api
/
calls
/
{call_sid}
Get Call
curl --request GET \
  --url https://api.example.com/api/calls/{call_sid}
{
  "call_sid": "call_xyz",
  "client_id": "org_1",
  "agent_id": "agent_abc",
  "agent_name": "Sales Rep",
  "to_number": "+15559876543",
  "from_number": "+15551234567",
  "status": "completed",
  "call_type": "outbound",
  "room_sid": "RM...",
  "recording_url": "s3://...",
  "started_at": "2024-01-01T10:00:00Z",
  "ended_at": "2024-01-01T10:05:00Z",
  "duration": 300
}
Get detailed information about a specific call.
call_sid
string
required
The unique identifier of the call.

Response

Returns the full call detail object.
{
  "call_sid": "call_xyz",
  "client_id": "org_1",
  "agent_id": "agent_abc",
  "agent_name": "Sales Rep",
  "to_number": "+15559876543",
  "from_number": "+15551234567",
  "status": "completed",
  "call_type": "outbound",
  "room_sid": "RM...",
  "recording_url": "s3://...",
  "started_at": "2024-01-01T10:00:00Z",
  "ended_at": "2024-01-01T10:05:00Z",
  "duration": 300
}