Skip to main content
GET
/
calls
List Calls
curl --request GET \
  --url https://api.dev.kathan.tech/calls \
  --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
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer
default:50
offset
integer
default:0

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