Skip to main content
GET
/
v1
/
sessions
/
{id}
/
recordings
curl https://api.kallglot.com/v1/sessions/sess_01HXYZ123456789/recordings \
  -H "Authorization: Bearer sk_live_your_api_key"
{
  "object": "list",
  "data": [
    {
      "id": "rec_01HABC987654321",
      "object": "recording",
      "session_id": "sess_01HXYZ123456789",
      "duration": 245.3,
      "format": "mp3",
      "status": "ready",
      "created_at": "2026-03-26T11:04:20Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developer.kallglot.com/llms.txt

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

List recordings for a session. Dual-channel recording provides stereo audio with agent and customer on separate channels.

Path Parameters

id
string
required
Session ID (e.g., sess_01HXYZ123456789).

Response

object
string
Always list.
data
array
Recording objects.
curl https://api.kallglot.com/v1/sessions/sess_01HXYZ123456789/recordings \
  -H "Authorization: Bearer sk_live_your_api_key"
{
  "object": "list",
  "data": [
    {
      "id": "rec_01HABC987654321",
      "object": "recording",
      "session_id": "sess_01HXYZ123456789",
      "duration": 245.3,
      "format": "mp3",
      "status": "ready",
      "created_at": "2026-03-26T11:04:20Z"
    }
  ]
}
Recordings are available after the session ends. Processing typically takes a few seconds.