cURL
curl --request GET \ --url https://api.timeless.day/v1/meetings/{meeting_id}/transcript \ --header 'Authorization: Bearer <token>'
{ "meeting_id": "mtg_abc123", "language": "en", "speakers": [ { "id": "spk_001", "name": "Alice Johnson", "email": "alice@example.com" }, { "id": "spk_002", "name": "Bob Smith", "email": "bob@example.com" } ], "segments": [ { "speaker_id": "spk_001", "start_time": 0, "end_time": 4.5, "text": "Good morning everyone, let's get started." }, { "speaker_id": "spk_002", "start_time": 4.8, "end_time": 8.2, "text": "Sounds good. I have updates on the project." } ] }
Returns the transcript for a meeting, including speaker identification and time-stamped segments.
API token from your Timeless dashboard.
The meeting ID (e.g., mtg_abc123).
mtg_abc123
The meeting transcript.
The meeting ID.
"mtg_abc123"
The detected language of the transcript (e.g., en).
en
"en"
List of identified speakers.
Show child attributes
Transcript segments in chronological order.