Skip to main content
GET
/
v1
/
calls
/
{id}
Get call by id
curl --request GET \
  --url https://api.conduit.ai/v1/calls/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "ce7e2g8z4qbydxtjq8rbxprc4x7f2h5d",
    "workspace_id": "j57demo8f8x7c9v0n2q4r6t8y1u3i5o",
    "contact_id": "ph77c0dy0mgdpzmqz6tesry8w184002s",
    "conversation_id": "ph77c0dy0mgdpzmqz6tesry8w184002s",
    "ticket_id": "xd88mkfbmxgckpeyzs8m9r9d3d843me3",
    "call_id": "call_123",
    "direction": "inbound",
    "from_phone": "+14155550123",
    "to_phone": "+14155550999",
    "source": "retell",
    "is_missed": false,
    "transfer_status": null,
    "duration_ms": 183000,
    "sentiment": "neutral",
    "summary": "Guest asked about check-in timing.",
    "recording_url": "https://recordings.conduit.ai/calls/call_123.mp3",
    "started_at": "2026-04-03T02:58:00.000Z",
    "created_at": "2026-04-03T03:01:03.000Z",
    "call_status": {
      "success": true,
      "is_voicemail_reached": false,
      "is_transferred": false
    },
    "transcript": [
      {
        "author": "guest",
        "text": "Hi, can I check in early?",
        "start": 0.2,
        "end": 2.8
      },
      {
        "author": "agent",
        "text": "Let me confirm that for you.",
        "start": 3,
        "end": 5.4
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Conduit API token. Use Authorization: Bearer <token>. Read/write endpoints require a token with write access.

Path Parameters

id
string
required

Call id.

Example:

"ce7e2g8z4qbydxtjq8rbxprc4x7f2h5d"

Query Parameters

workspace_id
string

Optional workspace override. If omitted, Conduit resolves the call's workspace automatically.

Example:

"j57demo8f8x7c9v0n2q4r6t8y1u3i5o"

Response

Call

Call detail response including transcript and recording URL when available.

data
object
required