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

Documentation Index

Fetch the complete documentation index at: https://docs.reachedapp.com/llms.txt

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

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://YOUR_PROJECT.supabase.co/functions/v1/api-gateway/v1/call-logs/log-uuid-1" \
  -H "Authorization: Bearer rchd_live_xxxxxxxxxxxx"

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": "...",
    "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