Skip to content
Last updated

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.

Path Parameters

session_id string required

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

Query Parameters

format string optional ยท Defaults to "txt"

Export format. Valid values:

  • txt -- Plain text with speaker labels and timestamps
  • srt -- SubRip subtitle format for video players
  • json -- Structured JSON with all transcript metadata

Returns

Returns the transcript content as a file download. The Content-Type header varies by format:

FormatContent-TypeFile Extension
txttext/plain.txt
srttext/plain.srt
jsonapplication/json.json

The Content-Disposition header includes the filename (e.g., transcript_mbsess_abc123.txt).

cURL
# 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