Skip to main content
GET
/
v1
/
agents
/
{agent_id}
/
calls
/
{call_id}
Get call
curl --request GET \
  --url https://api.agents.slng.ai/v1/agents/{agent_id}/calls/{call_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "agent_id": "550e8400-e29b-41d4-a716-446655440000",
  "phone_number": "<string>",
  "arguments": {},
  "rendered_prompt": "<string>",
  "livekit_room_name": "<string>",
  "status": "<string>",
  "created_at": "2026-01-15T10:30:00Z",
  "updated_at": "2026-01-15T10:30:00Z",
  "livekit_dispatch_id": "<string>",
  "error_message": "<string>",
  "recording_url": "<string>",
  "livekit_session_report": {},
  "call_events": [
    {
      "v": 1,
      "created_at": 1,
      "event": "<string>",
      "level": "info",
      "component": "stt",
      "from_model": "<string>",
      "to_model": "<string>",
      "reason": "hard_fail",
      "timeout_s": 1,
      "error_type": "<string>",
      "error_code": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

agent_id
string<uuid>
required

Voice agent ID.

Example:

"550e8400-e29b-41d4-a716-446655440000"

call_id
string<uuid>
required

Call ID.

Example:

"550e8400-e29b-41d4-a716-446655440000"

Response

Call.

id
string<uuid>
required
Example:

"550e8400-e29b-41d4-a716-446655440000"

agent_id
string<uuid>
required
Example:

"550e8400-e29b-41d4-a716-446655440000"

phone_number
string
required
arguments
object
required
rendered_prompt
string
required
livekit_room_name
string
required
status
string
required
created_at
string<date-time>
required
Example:

"2026-01-15T10:30:00Z"

updated_at
string<date-time>
required
Example:

"2026-01-15T10:30:00Z"

livekit_dispatch_id
string | null
error_message
string | null
recording_url
string | null
livekit_session_report
object

Opaque session report (may include transcript; structure may change).

call_events
object[]