Download a session's transcript as a file in TXT, SRT, or JSON format.
GEThttps://api.aitronos.com/v1/meeting-buddy/sessions/{session_id}/transcripts/export
Export the complete transcript for a Meeting Buddy session as a downloadable file. Supports plain text, SRT subtitle, and JSON formats. The response is returned as a file download with the appropriate Content-Disposition header.
session_id string required
The unique identifier of the session. Must start with mbsess_ prefix.
format string optional ยท Defaults to "txt"
Export format. Valid values:
txt-- Plain text with speaker labels and timestampssrt-- SubRip subtitle format for video playersjson-- Structured JSON with all transcript metadata
Returns the transcript content as a file download. The Content-Type header varies by format:
| Format | Content-Type | File Extension |
|---|---|---|
txt | text/plain | .txt |
srt | text/plain | .srt |
json | application/json | .json |
The Content-Disposition header includes the filename (e.g., transcript_mbsess_abc123.txt).
cURL
- Bash
- Python
- Python
- JavaScript
# Export as plain text
curl -s -X GET "https://api.aitronos.com/v1/meeting-buddy/sessions/mbsess_abc123def456/transcripts/export?format=txt" \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-o transcript.txt
# Export as SRT subtitles
curl -s -X GET "https://api.aitronos.com/v1/meeting-buddy/sessions/mbsess_abc123def456/transcripts/export?format=srt" \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-o transcript.srt
# Export as JSON
curl -s -X GET "https://api.aitronos.com/v1/meeting-buddy/sessions/mbsess_abc123def456/transcripts/export?format=json" \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-o transcript.json