Skip to main content
GET
/
v1
/
call-logs
/
:id
Call Log
curl --request GET \
  --url https://api.example.com/v1/call-logs/:id
import requests

url = "https://api.example.com/v1/call-logs/:id"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api.example.com/v1/call-logs/:id', 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/:id",
  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/:id"

	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/:id")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.example.com/v1/call-logs/:id")

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_body

Get a Call Log

Retrieves the full details of a specific call, including recording URL, transcript, and disposition.

Request

GET /v1/call-logs/:id

Path Parameters

ParameterTypeRequiredDescription
iduuidYesThe unique identifier of the call log

Example

curl -X GET \
  "https://kdjmltmhxvvmiuehafgl.supabase.co/functions/v1/api-gateway/v1/call-logs/log-uuid-1" \
  -H "Authorization: Bearer rchd_live_xxxxxxxxxxxx"
const callId = "log-uuid-1";
const response = await fetch(
  `https://kdjmltmhxvvmiuehafgl.supabase.co/functions/v1/api-gateway/v1/call-logs/${callId}`,
  {
    headers: {
      "Authorization": "Bearer rchd_live_xxxxxxxxxxxx"
    }
  }
);
const { data } = await response.json();
import requests

call_id = "log-uuid-1"
response = requests.get(
    f"https://kdjmltmhxvvmiuehafgl.supabase.co/functions/v1/api-gateway/v1/call-logs/{call_id}",
    headers={"Authorization": "Bearer rchd_live_xxxxxxxxxxxx"}
)
data = response.json()

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": "meeting_booked",
    "recording_url": "https://...",
    "transcript": "...",
    "summary": "Call was positive, ended with a demo booked...",
    "notes": "Demo booked for next Thursday",
    "started_at": "2026-03-21T14:30:00.000Z",
    "ended_at": "2026-03-21T14:32:25.000Z"
  }
}

Additional Fields (vs. List endpoint)

FieldTypeDescription
agent_iduuidID of the agent who handled the call
transcriptstringCall transcript (if available)
notesstringNotes added by the agent after the call