Skip to content
Last updated

Retrieve transcription segments for a Meeting Buddy session.

GEThttps://api.aitronos.com/v1/meeting-buddy/sessions/{session_id}/transcripts

Get all transcription segments for a session, ordered by start_time. Returns an empty list if transcription is disabled, no transcripts are available yet (session still initializing), or partial results if the session is still active.

Each transcript segment includes the transcribed text, a confidence score, start and end timestamps (in seconds from session start), speaker identification (if available), and the detected language code.

Path Parameters

session_id string required

The unique identifier of the session. Must start with mbsess_ prefix.


Returns

Returns an array of transcript segment objects. Each segment contains:

FieldTypeDescription
transcript_idstringUnique transcript segment identifier (prefixed with mbtrans_)
textstringTranscribed text content
confidencenumber or nullConfidence score between 0.0 and 1.0
start_timenumberStart timestamp in seconds from session start
end_timenumberEnd timestamp in seconds from session start
speakerstring or nullSpeaker identification (if available)
language_codestringDetected language code
created_atstringISO 8601 timestamp when the segment was created
cURL
curl -s -X GET https://api.aitronos.com/v1/meeting-buddy/sessions/mbsess_abc123def456/transcripts \
  -H "Authorization: Bearer $ACCESS_TOKEN" | python3 -m json.tool