Skip to main content
GET
/
api
/
v1
/
calls
/
sid
/
{call_sid}
{
  "call_sid": "<string>",
  "to_phone_number": "<string>",
  "customer_phone_number": "<string>",
  "id": 123,
  "assistant_id": 123,
  "status": "<string>",
  "call_meta": {},
  "assistant_name": "<string>",
  "flow_name": "<string>",
  "duration": 123,
  "started_at": "2023-11-07T05:31:56Z",
  "ended_at": "2023-11-07T05:31:56Z",
  "total_cost": 123,
  "llm_cost": 123,
  "tts_cost": 123,
  "stt_cost": 123,
  "telephony_cost": 123,
  "cost_currency": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.burki.dev/llms.txt

Use this file to discover all available pages before exploring further.

This endpoint retrieves a single call record by its Burki call SID / provider call identifier. This is useful when you have the call SID from provider webhooks, logs, or call initiation responses and need to look up the corresponding call in Burki.

Path Parameters

  • call_sid (string, required): The Burki call SID / provider call identifier.

Response

The response is a JSON object containing the full details of the specified call. The structure is the same as the objects returned by the List Calls endpoint.
Response
{
  "id": 101,
  "call_sid": "CAxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
  "assistant_id": 123,
  "assistant_name": "ServiceBot",
  "flow_name": "Customer Support Flow",
  "to_phone_number": "+15551234567",
  "customer_phone_number": "+15559876543",
  "status": "completed",
  "started_at": "2023-10-30T10:00:00Z",
  "ended_at": "2023-10-30T10:05:00Z",
  "duration": 300,
  "call_meta": {
    "customer_id": "cust_abc123"
  },
  "total_cost": 0.05,
  "llm_cost": 0.02,
  "tts_cost": 0.01,
  "stt_cost": 0.01,
  "telephony_cost": 0.01,
  "cost_currency": "USD"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

call_sid
string
required

Response

Successful Response

Schema for call response.

call_sid
string
required
to_phone_number
string
required
customer_phone_number
string
required
id
integer
required
assistant_id
integer
required
status
string
required
call_meta
Call Meta · object
assistant_name
string | null
flow_name
string | null
duration
integer | null
started_at
string<date-time> | null
ended_at
string<date-time> | null
total_cost
number | null
llm_cost
number | null
tts_cost
number | null
stt_cost
number | null
telephony_cost
number | null
cost_currency
string | null