Skip to main content
GET
/
v1
/
sessions
/
{id}
curl https://api.kallglot.com/v1/sessions/sess_01HXYZ123456789 \
  -H "Authorization: Bearer sk_live_your_api_key"
{
  "id": "sess_01HXYZ123456789",
  "object": "session",
  "status": "active",
  "mode": "bidirectional_translation",
  "provider": "twilio",
  "phone_number": "+14155551234",
  "source_language": "de",
  "target_language": "en",
  "stream": {
    "url": "wss://api.kallglot.com/v1/sessions/sess_01HXYZ123456789/connect",
    "token": "kst_live_xxxxxxxx",
    "expires_at": "2026-03-26T12:00:00Z"
  },
  "recording": { "enabled": true },
  "metadata": { "customer_id": "123" },
  "created_at": "2026-03-26T11:00:00Z",
  "started_at": "2026-03-26T11:00:15Z",
  "ended_at": null
}

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 current state of a session including status, languages, and connection details.

Path Parameters

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

Response

id
string
Session identifier.
object
string
Always session.
status
string
created, active, or ended.
mode
string
Session mode.
source_language
string
Source language code.
target_language
string
Target language code.
stream
object
WebSocket connection (only for active sessions).
provider
string
Response only — which carrier is attached (twilio, telnyx, or sip). Set telephony on create with routing, not this field.
phone_number
string
Phone number used (if applicable).
recording
object
metadata
object
Custom metadata.
created_at
string
Creation timestamp (ISO 8601).
started_at
string
When session became active. Null if not started.
ended_at
string
When session ended. Null if still active.
curl https://api.kallglot.com/v1/sessions/sess_01HXYZ123456789 \
  -H "Authorization: Bearer sk_live_your_api_key"
{
  "id": "sess_01HXYZ123456789",
  "object": "session",
  "status": "active",
  "mode": "bidirectional_translation",
  "provider": "twilio",
  "phone_number": "+14155551234",
  "source_language": "de",
  "target_language": "en",
  "stream": {
    "url": "wss://api.kallglot.com/v1/sessions/sess_01HXYZ123456789/connect",
    "token": "kst_live_xxxxxxxx",
    "expires_at": "2026-03-26T12:00:00Z"
  },
  "recording": { "enabled": true },
  "metadata": { "customer_id": "123" },
  "created_at": "2026-03-26T11:00:00Z",
  "started_at": "2026-03-26T11:00:15Z",
  "ended_at": null
}