Skip to main content
GET
/
calls
/
{call_id}
Get Call Status
curl --request GET \
  --url https://api.example.com/calls/{call_id} \
  --header 'Authorization: Bearer <token>'
{
  "call_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "tenant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "direction": "<string>",
  "from_number": "<string>",
  "to_number": "<string>",
  "status": "<string>",
  "started_at": "<string>",
  "disposition": "<string>",
  "duration_seconds": 123,
  "recording_url": "<string>",
  "sentiment_score": 123,
  "language_detected": "<string>",
  "ended_at": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt

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

Authorizations

Authorization
string
header
required

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

Path Parameters

call_id
string<uuid>
required

Response

Successful Response

Call status model.

call_id
string<uuid>
required
agent_id
string<uuid>
required
tenant_id
string<uuid>
required
direction
string
required
from_number
string
required
to_number
string
required
status
string
required
started_at
string
required
disposition
string | null
duration_seconds
integer | null
recording_url
string | null
sentiment_score
number | null
language_detected
string | null
ended_at
string | null