Get the transcript for a meeting. Supports multiple output formats and time range filtering.
{
"object": "meeting.transcript",
"meeting_id": "<string>",
"format": "segments",
"segments": [
{
"start": 123,
"end": 123,
"speaker": "<string>",
"speaker_id": "<string>",
"text": "<string>",
"word_timestamps": [
{
"word": "<string>",
"start": 123,
"end": 123
}
]
}
],
"content": "<string>",
"duration_seconds": 123,
"total_words": 123,
"participant_map": {},
"created_at": "2023-11-07T05:31:56Z"
}Documentation Index
Fetch the complete documentation index at: https://docs.mavera.io/llms.txt
Use this file to discover all available pages before exploring further.
API key prefixed with mvra_live_. Create keys at Settings > Developer > API Keys.
Meeting ID
Output format: 'segments' (default, structured JSON), 'text' (plain text), 'srt' (subtitle format)
segments, text, srt Filter segments starting at this time (seconds from start)
Filter segments ending before this time (seconds from start)
Meeting transcript
meeting.transcript Output format of the transcript
segments, text, srt Transcript segments (when format=segments)
Show child attributes
Full transcript content (when format=text or srt)
Participant statistics map
{
"object": "meeting.transcript",
"meeting_id": "<string>",
"format": "segments",
"segments": [
{
"start": 123,
"end": 123,
"speaker": "<string>",
"speaker_id": "<string>",
"text": "<string>",
"word_timestamps": [
{
"word": "<string>",
"start": 123,
"end": 123
}
]
}
],
"content": "<string>",
"duration_seconds": 123,
"total_words": 123,
"participant_map": {},
"created_at": "2023-11-07T05:31:56Z"
}