DocsAPI ReferenceGet the full transcript
GET/api/v1/bots/{bot_id}/transcription

Returns the complete transcription for a meeting — all segments merged from both the live Redis buffer and the persisted database. Each segment includes speaker label, relative timestamps, absolute wall-clock timestamps, language code, and completion flag.

Path Parameters

bot_idstringrequirede.g. "550e8400-e29b-41d4-a716-446655440000"

Bot UUID.

Headers

X-API-Keystringrequired

Your workspace API key.

Responses

200Full transcription response with all segments.
{
  "id": 99,
  "platform": "google_meet",
  "native_meeting_id": "abc-defg-hij",
  "status": "completed",
  "start_time": "2026-05-12T10:05:00Z",
  "end_time": "2026-05-12T11:00:00Z",
  "segments": [
    {
      "start": 1.23,
      "end": 5.67,
      "text": "Let's get started with the Q3 review.",
      "speaker": "Alice",
      "language": "en",
      "created_at": "2026-05-12T10:05:01Z",
      "completed": true,
      "absolute_start_time": "2026-05-12T10:05:01Z",
      "absolute_end_time": "2026-05-12T10:05:05Z"
    }
  ]
}
404Bot not found in this workspace.