Skip to content

Get a meeting transcript

get /v1/meetings/{meeting_id}/transcript

Returns the enhanced transcript when available, otherwise the original transcript. An unavailable transcript is represented by a successful response with available set to false and its current processing status.

Returns a single transcript object.

Requires the meetings.read and transcriptions.read scopes together.

NameTypeRequiredDescription
meeting_idstringYes
Terminal window
curl "https://api.salesbud.com.br/v1/meetings/mtg_01JEXAMPLE/transcript" \
-H "Authorization: Bearer $SALESBUD_ACCESS_TOKEN"
200 OK
{
"data": {
"object": "transcript",
"meeting_id": "mtg_ExampleMeeting01",
"available": true,
"status": "completed",
"variant": "enhanced",
"utterances": [
{
"speaker": "Example Rep",
"text": "Walk me through how the team logs a call today.",
"start_ms": 12400,
"end_ms": 16800
},
{
"speaker": "buyer@example.com",
"text": "Manually, right after. It costs us about two hours a day.",
"start_ms": 17200,
"end_ms": 23900
}
],
"created_at": "2026-01-14T14:02:00.000Z",
"updated_at": "2026-01-14T14:09:12.000Z"
},
"request_id": "req_ExampleRequestId01"
}
StatusDescription
200Company-scoped meeting transcript.
401Missing or invalid credentials.
403The token does not contain the required scope.
404Resource not found in the authenticated company.
429Client rate limit exceeded.
503A required audit or rate-limit dependency is unavailable.