List Call Logs
curl --request GET \
--url https://api.example.com/v1/call-logsimport requests
url = "https://api.example.com/v1/call-logs"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/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.example.com/v1/call-logs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.example.com/v1/call-logs"
req, _ := http.NewRequest("GET", url, nil)
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.example.com/v1/call-logs")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/call-logs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyCall logs
List Call Logs
Returns a paginated list of call logs with optional filters.
GET
/
v1
/
call-logs
List Call Logs
curl --request GET \
--url https://api.example.com/v1/call-logsimport requests
url = "https://api.example.com/v1/call-logs"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/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.example.com/v1/call-logs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.example.com/v1/call-logs"
req, _ := http.NewRequest("GET", url, nil)
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.example.com/v1/call-logs")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/call-logs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyList Call Logs
Returns a paginated list of call logs with optional filters. Default sort:created_at DESC. Supports incremental polling via updated_since.
Request
GET /v1/call-logs
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
page | integer | No | Page number (default: 1) |
per_page | integer | No | Results per page, max 100 (default: 25) |
lead_id | uuid | No | Filter by lead ID |
campaign_id | uuid | No | Filter by campaign ID |
agent_id | uuid | No | Filter by agent (user) ID |
disposition | string | No | Filter by disposition (e.g. connected, voicemail-left, appointment-scheduled, not-interested) |
date_from | string | No | Filter calls created after this ISO 8601 timestamp (e.g. 2026-03-01T00:00:00Z) |
date_to | string | No | Filter calls created before this ISO 8601 timestamp |
updated_since | string | No | Incremental polling: return only calls updated after this ISO 8601 timestamp. Use the latest updated_at from the previous poll. (updated_after is accepted as an alias.) |
updated_after | string | No | Alias for updated_since. |
include | string | No | Set to "lead" to embed lead details (first_name, last_name, email, phone, company_name, title) in each call log object. Avoids a separate /v1/leads lookup per call. |
is_conversation | boolean | No | Filter for real conversations (answered + bridged exchange, duration >= 60s). true = only conversations, false = only non-conversations. |
Example
curl -X GET \
"https://kdjmltmhxvvmiuehafgl.supabase.co/functions/v1/api-gateway/v1/call-logs?campaign_id=c1d2e3f4-...&date_from=2026-03-01T00:00:00Z" \
-H "Authorization: Bearer rchd_live_xxxxxxxxxxxx"
const params = new URLSearchParams({
campaign_id: "c1d2e3f4-...",
date_from: "2026-03-01T00:00:00Z"
});
const response = await fetch(
`https://kdjmltmhxvvmiuehafgl.supabase.co/functions/v1/api-gateway/v1/call-logs?${params}`,
{
headers: {
"Authorization": "Bearer rchd_live_xxxxxxxxxxxx"
}
}
);
const { data, meta } = await response.json();
import requests
response = requests.get(
"https://kdjmltmhxvvmiuehafgl.supabase.co/functions/v1/api-gateway/v1/call-logs",
headers={"Authorization": "Bearer rchd_live_xxxxxxxxxxxx"},
params={
"campaign_id": "c1d2e3f4-...",
"date_from": "2026-03-01T00:00:00Z"
}
)
result = response.json()
Incremental polling example
curl -X GET \
"https://kdjmltmhxvvmiuehafgl.supabase.co/functions/v1/api-gateway/v1/call-logs?updated_since=2026-03-21T14:33:00Z&per_page=100" \
-H "Authorization: Bearer rchd_live_xxxxxxxxxxxx"
const params = new URLSearchParams({
updated_since: "2026-03-21T14:33:00Z",
per_page: "100"
});
const response = await fetch(
`https://kdjmltmhxvvmiuehafgl.supabase.co/functions/v1/api-gateway/v1/call-logs?${params}`,
{ headers: { "Authorization": "Bearer rchd_live_xxxxxxxxxxxx" } }
);
const { data, meta } = await response.json();
Embed lead details
curl -X GET \
"https://kdjmltmhxvvmiuehafgl.supabase.co/functions/v1/api-gateway/v1/call-logs?include=lead&per_page=25" \
-H "Authorization: Bearer rchd_live_xxxxxxxxxxxx"
const response = await fetch(
"https://kdjmltmhxvvmiuehafgl.supabase.co/functions/v1/api-gateway/v1/call-logs?include=lead&per_page=25",
{ headers: { "Authorization": "Bearer rchd_live_xxxxxxxxxxxx" } }
);
const { data } = await response.json();
// Each call log now includes a "lead" object with first_name, last_name, email, phone, company_name, title
Response
{
"data": [
{
"id": "log-uuid-1",
"lead_id": "a1b2c3d4-...",
"campaign_id": "c1d2e3f4-...",
"agent_id": "user-uuid-1",
"from_number": "+33140000000",
"to_number": "+33612345678",
"duration": 145,
"status": "completed",
"disposition": "appointment-scheduled",
"is_conversation": true,
"transcription_status": "completed",
"recording_url": "https://...",
"started_at": "2026-03-21T14:30:00.000Z",
"ended_at": "2026-03-21T14:32:25.000Z",
"created_at": "2026-03-21T14:30:00.000Z",
"updated_at": "2026-03-21T14:33:00.000Z"
}
],
"meta": {
"page": 1,
"per_page": 25,
"total": 1
}
}
Response Fields
| Field | Type | Description |
|---|---|---|
id | uuid | Call log unique identifier |
lead_id | uuid | Associated lead ID |
campaign_id | uuid | Associated campaign ID |
agent_id | uuid | ID of the agent who handled the call |
from_number | string | Caller phone number |
to_number | string | Called phone number |
duration | integer | Call duration in seconds |
status | string | Call status (completed, no-answer, busy, failed) |
disposition | string | Call outcome disposition |
is_conversation | boolean | Whether the call was a real conversation (answered + bridged, duration >= 60s) |
transcription_status | string | Transcription status (pending, completed, failed, none) |
recording_url | string | URL to the call recording (if available) |
started_at | datetime | Call start timestamp |
ended_at | datetime | Call end timestamp |
created_at | datetime | Call log creation timestamp |
updated_at | datetime | Last update timestamp (use for incremental polling) |
Disposition Values
| Disposition | Category | Description |
|---|---|---|
appointment-scheduled | Reached | Meeting or demo scheduled |
not-interested | Reached | Lead not interested |
send-email | Reached | Send an email |
callback-later | Reached | Callback the lead later |
voicemail | Attempted | Reached voicemail (no message left) |
voicemail-left | Attempted | Voicemail message left |
no-answer | Attempted | No one answered |
wrong-number | Reached | Wrong number |
personal-number | Reached | Lead personal number |
wrong-person | Reached | Wrong contact |
no-longer-at-company | Reached | Contact left the company |
abandoned-call | Attempted | Call abandoned |
voice-assistant-filtered | Attempted | Filtered by voice assistant |
voicemail-avoided | Attempted | Voicemail detected, call ended before connecting |
not-specified | Not specified | Not specified |
Custom dispositions created in your workspace have values prefixed with
custom_ (e.g. custom_a1b2c3d4). Use the List Dispositions endpoint to retrieve all available dispositions including custom ones..png?fit=max&auto=format&n=PYj-p9lRwfHX4QQS&q=85&s=967f00940a17d1d8cc11bd8995dc98d0)
.png?fit=max&auto=format&n=PYj-p9lRwfHX4QQS&q=85&s=5072033d90dfd5e7cc9349712ea4e145)