Skip to main content
GET
/
api
/
calls
/
{call_id}
/
status
Get Call Status
curl --request GET \
  --url http://localhost:8000/api/calls/{call_id}/status
{
  "call_id": "<string>",
  "status": "CREATED",
  "room_name": "<string>",
  "call_status": "RINGING",
  "call_direction": "INBOUND",
  "outbound_phone_number": "<string>",
  "started_at": "2023-11-07T05:31:56Z",
  "ended_at": "2023-11-07T05:31:56Z",
  "duration": 123
}

Path Parameters

call_id
string
required

Response

Successful Response

call_id
string
required
status
enum<string>
required
Available options:
CREATED,
ACTIVE,
COMPLETED,
FAILED
room_name
string
required
call_status
enum<string> | null
Available options:
RINGING,
ANSWERED,
COMPLETED,
FAILED,
NO_ANSWER
call_direction
enum<string> | null
Available options:
INBOUND,
OUTBOUND
outbound_phone_number
string | null
started_at
string<date-time> | null
ended_at
string<date-time> | null
duration
integer | null