Skip to main content
GET
/
meetings
/
{id}
/
transcript
curl https://app.mavera.io/api/v1/meetings/meeting_123/transcript \ -H "Authorization: Bearer mvra_live_your_key_here"
{
  "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.

Authorizations

Authorization
string
header
required

API key prefixed with mvra_live_. Create keys at Settings > Developer > API Keys.

Path Parameters

id
string
required

Meeting ID

Query Parameters

format
enum<string>
default:segments

Output format: 'segments' (default, structured JSON), 'text' (plain text), 'srt' (subtitle format)

Available options:
segments,
text,
srt
start_time
number

Filter segments starting at this time (seconds from start)

end_time
number

Filter segments ending before this time (seconds from start)

Response

Meeting transcript

object
enum<string>
Available options:
meeting.transcript
meeting_id
string
format
enum<string>

Output format of the transcript

Available options:
segments,
text,
srt
segments
object[]

Transcript segments (when format=segments)

content
string

Full transcript content (when format=text or srt)

duration_seconds
number | null
total_words
integer | null
participant_map
object

Participant statistics map

created_at
string<date-time> | null