Skip to main content
GET
/
v1
/
sessions
/
{id}
/
transcript
curl https://api.kallglot.com/v1/sessions/sess_01HXYZ123456789/transcript \
  -H "Authorization: Bearer sk_live_your_api_key"
{
  "id": "trn_sess_01HXYZ123456789",
  "object": "transcript",
  "session_id": "sess_01HXYZ123456789",
  "status": "completed",
  "turns": [
    {
      "sequence": 1,
      "speaker": "agent",
      "language": "en",
      "text": "Hello, how can I help you?",
      "timestamp": "2026-03-26T11:00:15Z"
    },
    {
      "sequence": 2,
      "speaker": "customer",
      "language": "de",
      "text": "Ich habe eine Frage zu meiner Bestellung.",
      "translation": {
        "language": "en",
        "text": "I have a question about my order."
      },
      "timestamp": "2026-03-26T11:00:18Z"
    }
  ],
  "metadata": {
    "total_turns": 2,
    "duration_seconds": 180.5,
    "languages_detected": ["en", "de"]
  }
}

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.

Retrieve the transcript with speaker identification, timestamps, and translations.

Path Parameters

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

Response

id
string
Transcript identifier.
object
string
Always transcript.
session_id
string
Parent session ID.
status
string
in_progress (session active) or completed (session ended).
turns
array
Conversation turns.
metadata
object
Summary statistics.
curl https://api.kallglot.com/v1/sessions/sess_01HXYZ123456789/transcript \
  -H "Authorization: Bearer sk_live_your_api_key"
{
  "id": "trn_sess_01HXYZ123456789",
  "object": "transcript",
  "session_id": "sess_01HXYZ123456789",
  "status": "completed",
  "turns": [
    {
      "sequence": 1,
      "speaker": "agent",
      "language": "en",
      "text": "Hello, how can I help you?",
      "timestamp": "2026-03-26T11:00:15Z"
    },
    {
      "sequence": 2,
      "speaker": "customer",
      "language": "de",
      "text": "Ich habe eine Frage zu meiner Bestellung.",
      "translation": {
        "language": "en",
        "text": "I have a question about my order."
      },
      "timestamp": "2026-03-26T11:00:18Z"
    }
  ],
  "metadata": {
    "total_turns": 2,
    "duration_seconds": 180.5,
    "languages_detected": ["en", "de"]
  }
}
Transcripts build in real-time during active sessions.