curl --request GET \
--url https://api.cekura.ai/observability/v2/call-logs/ \
--header 'X-CEKURA-API-KEY: <api-key>'import requests
url = "https://api.cekura.ai/observability/v2/call-logs/"
headers = {"X-CEKURA-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-CEKURA-API-KEY': '<api-key>'}};
fetch('https://api.cekura.ai/observability/v2/call-logs/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.cekura.ai/observability/v2/call-logs/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-CEKURA-API-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.cekura.ai/observability/v2/call-logs/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-CEKURA-API-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.cekura.ai/observability/v2/call-logs/")
.header("X-CEKURA-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cekura.ai/observability/v2/call-logs/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-CEKURA-API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"results": [
{
"call_id": "<string>",
"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,
"agent_name": "<string>",
"trace_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",
"transcript": "<string>",
"transcript_object": "<string>",
"evaluation": "<string>"
}
],
"count": 123,
"count_capped": false,
"next": "https://api.cekura.ai/example/v1/example-external/?page=4",
"previous": "https://api.cekura.ai/example/v1/example-external/?page=3"
}List Calls
List call logs
curl --request GET \
--url https://api.cekura.ai/observability/v2/call-logs/ \
--header 'X-CEKURA-API-KEY: <api-key>'import requests
url = "https://api.cekura.ai/observability/v2/call-logs/"
headers = {"X-CEKURA-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-CEKURA-API-KEY': '<api-key>'}};
fetch('https://api.cekura.ai/observability/v2/call-logs/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.cekura.ai/observability/v2/call-logs/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-CEKURA-API-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.cekura.ai/observability/v2/call-logs/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-CEKURA-API-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.cekura.ai/observability/v2/call-logs/")
.header("X-CEKURA-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cekura.ai/observability/v2/call-logs/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-CEKURA-API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"results": [
{
"call_id": "<string>",
"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,
"agent_name": "<string>",
"trace_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",
"transcript": "<string>",
"transcript_object": "<string>",
"evaluation": "<string>"
}
],
"count": 123,
"count_capped": false,
"next": "https://api.cekura.ai/example/v1/example-external/?page=4",
"previous": "https://api.cekura.ai/example/v1/example-external/?page=3"
}Authorizations
API Key Authentication. It should be included in the header of each request.
Query Parameters
A page number within the paginated result set.
Number of results to return per page.
Filter results from this timestamp (e.g. 2025-01-01T00:00:00Z)
Example: 2025-01-01T00:00:00Z
Filter results to this timestamp (e.g. 2025-01-31T23:59:59Z)
Example: 2025-01-31T23:59:59Z
Comma-separated list of call log IDs to filter by. Example: "5181749,5181752"
1Filter by agent ID. Either agent_id or project_id should be provided.
Example: 2142
Filter by project ID. Either agent_id or project_id should be provided.
Required when using an organization-level API key to scope results to a specific project.
Example: 1376
Filter by assistant ID Example:
"asst_1234567890""agent_xyz789"
1Advanced JSON filters using CallLogQueryFilter format (same as dashboard filters). Supports nested AND/OR conditions, field comparisons, and related field filtering.
Example - Simple filter:
{"field": "success", "op": "eq", "value": true}
Example - AND conditions:
{"operator": "and", "conditions": [{"field": "success", "op": "eq", "value": true}, {"field": "duration", "op": "gte", "value": 60}]}
Example - OR conditions:
{"operator": "or", "conditions": [{"field": "call_ended_reason", "op": "eq", "value": "completed"}, {"field": "call_ended_reason", "op": "eq", "value": "hangup"}]}
Supported fields: success, duration, call_id, timestamp, created_at, call_ended_reason, customer_number, etc. Supported operators: eq, neq, gt, gte, lt, lte, contains, startswith, in, isnull
1Select which fields each row carries by naming the ones you will read:
{id,call_id,timestamp,success,call_ended_reason,metrics}.
MCP clients get one compact row shape whichever credential they connected with.
transcript, transcript_object and evaluation (per-metric explanations) are
left out of it unless ql names them; metrics already carries every metric's
score. An exclusion ({-metadata}) or {*} starts from the whole row shape and
so puts those three back — name the fields you want instead of the ones you
don't. Per-call detail that is never on a list row — rubric, user-generated
transcript, recording, waveform, dynamic variables — comes from the retrieve
endpoint.
Naming a field the row shape does not have returns 400.
1When true, the response includes count — how many call logs match the
filters — and count_capped. The count is capped at 10000; count_capped: true means the true total exceeds the cap.
Response
Show child attributes
Show child attributes
Only present when the request passes include_count=true. Capped at 10000: when count_capped is true, the true total exceeds 10000.
123
Only present alongside count.
false
"https://api.cekura.ai/example/v1/example-external/?page=4"
"https://api.cekura.ai/example/v1/example-external/?page=3"