Skip to main content
GET
/
v1
/
agents
/
{agent_id}
/
calls
/
{call_id}
Get call
curl --request GET \
  --url https://api.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>",
  "livekit_response": {},
  "livekit_session_report": {},
  "error_message": "<string>"
}

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
livekit_response
object

Opaque LiveKit dispatch response (structure may change).

livekit_session_report
object

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

error_message
string | null