Skip to main content
GET
/
api
/
v1
/
calls
/
count
{
  "count": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.burki.dev/llms.txt

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

This endpoint returns the total number of calls that match a given set of filters. It is useful for quickly getting a count without retrieving the full list of call objects.

Query Parameters

This endpoint supports a subset of the List Calls filters:
  • status (string, optional)
  • assistant_id (integer, optional)
  • date_from (string, optional)
  • date_to (string, optional)
It does not support the search-style filters (customer_phone, call_sid, assistant_name) or duration filters. Use List Calls when you need those filters and read the total field from the paginated response.

Response

The response is a JSON object containing the total count of matching calls.
Response
{
  "count": 42
}

Authorizations

Authorization
string
header
required

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

Query Parameters

status
string | null

Filter by call status

assistant_id
integer | null

Filter by assistant ID

date_from
string<date-time> | null

Filter calls from this date

date_to
string<date-time> | null

Filter calls to this date

Response

Successful Response

Response model for call count.

count
integer
required