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>",
  "call_direction": "<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",
  "web_session_origin": "dashboard_test",
  "livekit_dispatch_id": "<string>",
  "call_started_at": "2026-01-15T10:30:00Z",
  "call_ended_at": "2026-01-15T10:30:00Z",
  "call_duration_ms": 123,
  "call_end_reason": "<string>",
  "finalized_at": "2026-01-15T10:30:00Z",
  "call_duration_source": "<string>",
  "error_message": "<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
    }
  ],
  "tool_executions": [
    {
      "tool_name": "<string>",
      "tool_kind": "webhook",
      "invocation_source": "system",
      "started_at": "2026-01-15T10:30:00Z",
      "finished_at": "2026-01-15T10:30:00Z",
      "duration_ms": 123,
      "outcome": "succeeded",
      "trigger_event": "<string>",
      "http_status": 123,
      "error_code": "<string>",
      "error_type": "<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
call_direction
string
required
arguments
object
required
rendered_prompt
string
required
livekit_room_name
string
required

Internal runtime identifier.

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"

web_session_origin
enum<string> | null
Available options:
dashboard_test,
api
livekit_dispatch_id
string | null

Internal dispatch identifier.

call_started_at
string<date-time> | null
Example:

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

call_ended_at
string<date-time> | null
Example:

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

call_duration_ms
integer | null
call_end_reason
string | null
finalized_at
string<date-time> | null
Example:

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

call_duration_source
string | null
error_message
string | null
livekit_session_report
object

Internal runtime diagnostics; structure may change.

call_events
object[]
tool_executions
object[]