Calls

List Calls

List historical calls with filtering and pagination.

GET
/calls
AuthorizationBearer <token>

API key authentication. Use format: Bearer kejue_...

In: header

Query Parameters

page?integer

Page number (1-based index)

Default1
Range1 <= value
page_size?integer

Number of items per page (max 100)

Default20
Range1 <= value <= 100
search?string

Search by Call SID, assistant ID, or summary text

call_type?string

Type of call.

Value in"outbound" | "inbound" | "callback"
call_success?string

AI-evaluated success score of the call.

Value in"Not Applicable" | "Poor" | "Fair" | "Good" | "Excellent"

Response Body

application/json

application/json

curl -X GET "https://api.kejue.co/api/v1/calls"
{
  "calls": [
    {
      "id": 12345,
      "status": "completed",
      "total_cost": "0.50"
    }
  ],
  "pagination": {
    "page": 1,
    "total_count": 1
  }
}
{
  "detail": "Invalid API Key provided."
}
Empty
Empty

Last updated on