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.
Authorization
Section titled “Authorization”Requires the meetings.read and transcriptions.read scopes together.
Path parameters
Section titled “Path parameters”| Name | Type | Required | Description |
|---|---|---|---|
meeting_id | string | Yes | — |
Example request
Section titled “Example request”curl "https://api.salesbud.com.br/v1/meetings/mtg_01JEXAMPLE/transcript" \ -H "Authorization: Bearer $SALESBUD_ACCESS_TOKEN"Example response
Section titled “Example response”{ "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"}Responses
Section titled “Responses”| Status | Description |
|---|---|
200 | Company-scoped meeting transcript. |
401 | Missing or invalid credentials. |
403 | The token does not contain the required scope. |
404 | Resource not found in the authenticated company. |
429 | Client rate limit exceeded. |
503 | A required audit or rate-limit dependency is unavailable. |