Skip to main content
GET
/
calls
/
{call_id}
Get Call
curl --request GET \
  --url https://api.dev.kathan.tech/calls/{call_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "to_number": "<string>",
  "provider": "<string>",
  "status": "<string>",
  "phone_number_id": "<string>",
  "assistant_id": "<string>",
  "from_number": "<string>",
  "provider_call_sid": "<string>",
  "direction": "<string>",
  "created_at": "<string>",
  "duration_seconds": 123,
  "timestamp": "<string>",
  "summary": "<string>",
  "greeting_one_liner": "<string>",
  "user_messages": 123,
  "agent_messages": 123,
  "transcript": [
    "<unknown>"
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

call_id
string
required

Response

Successful Response

id
string
required
to_number
string
required
provider
string
required
status
string
required
phone_number_id
string | null
assistant_id
string | null
from_number
string | null
provider_call_sid
string | null
direction
string | null
created_at
string | null
duration_seconds
integer | null
timestamp
string | null
summary
string | null
greeting_one_liner
string | null
user_messages
integer | null
agent_messages
integer | null
transcript
any[] | null