Skip to main content
GET
/
observability
/
v1
/
call-logs
cURL
curl --request GET \
  --url https://api.cekura.ai/observability/v1/call-logs/ \
  --header 'X-CEKURA-API-KEY: <api-key>'
{
  "count": 123,
  "next": "https://api.cekura.ai/example/v1/example-external/?page=4",
  "previous": "https://api.cekura.ai/example/v1/example-external/?page=3",
  "results": [
    {
      "id": 123,
      "duration": "<string>",
      "success": true,
      "is_reviewed": true,
      "status": "success",
      "feedback": "<string>",
      "metrics": [
        {
          "id": 123,
          "name": "<string>",
          "type": "<string>",
          "score": 123,
          "enum": "<string>",
          "value": "<string>"
        }
      ],
      "call_ended_reason": "<string>",
      "customer_number": "<string>",
      "agent": 123,
      "call_id": "<string>",
      "timestamp": "2023-11-07T05:31:56Z",
      "error_message": "<string>",
      "dropoff_point": "<string>",
      "topic": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

X-CEKURA-API-KEY
string
header
required

API Key Authentication. It should be included in the header of each request.

Query Parameters

page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

timestamp_from
string<date-time>

Filter results from this timestamp (e.g. 2025-01-01T00:00:00Z) Example: 2025-01-01T00:00:00Z

timestamp_to
string<date-time>

Filter results to this timestamp (e.g. 2025-01-31T23:59:59Z) Example: 2025-01-31T23:59:59Z

call_ids
string

Comma-separated list of call log IDs Example: 1,2,3

Minimum string length: 1
agent_id
integer
required

Filter by agent ID Example: 2142

assistant_id
string

Filter by assistant ID Example:

  • "asst_1234567890"
  • "agent_xyz789"
Minimum string length: 1

Response

200 - application/json
count
integer
Example:

123

next
string<uri> | null
Example:

"https://api.cekura.ai/example/v1/example-external/?page=4"

previous
string<uri> | null
Example:

"https://api.cekura.ai/example/v1/example-external/?page=3"

results
object[]