latestOpenAPI 3.1.02026-08-1292562.6 KB

150856520acc

Get transcript

Retrieve a meeting transcript in pages, including when Get Note returns TRANSCRIPT_TOO_LARGE.

get/v1/notes/{note_id}/transcript

Path parameters

note_idstring required

The ID of the note

Example:not_1d3tmYTlCICgjy

Query parameters

cursorstring

The opaque cursor returned by the previous page

Example:eyJyb3dfb2Zmc2V0Ijo1MCwiaXRlbV9vZmZzZXQiOjB9
page_sizeinteger

The maximum number of transcript items to return

Example:50

Response

A page of transcript items

hasMoreboolean required

Whether another page of transcript items is available

cursorstring nullable required

The opaque cursor for the next page, or null when this is the final page

Example response

{
  "transcript": [
    {
      "speaker": {
        "attribution": "me",
        "diarization_label": "Speaker A",
        "name": "Alice Smith"
      }
    }
  ]
}