Read a note transcript
get_note_transcriptRetrieve a recorded note's transcript as diarized segments, timestamped text lines, or per-speaker totals. Filter by speaker or audio source, and page through long recordings.
Instructions
Read a note's transcript. format=segments pages diarized segments with times relative to the recording start (offset/limit, speaker/source filters); format=text renders "[mm:ss] speaker: …" lines; format=speakers gives per-speaker totals only — use it first on long recordings. A note with no transcript returns an empty result, not an error.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | format:"segments" only. Segments (or text chunks) per page, 1-200. Default 100. | |
| format | No | segments: one entry per diarized segment, paged. text: [mm:ss] speaker lines. speakers: per-speaker totals only. | segments |
| offset | No | format:"segments" only. First segment (or text chunk) to return. Default 0. | |
| source | No | Keep only microphone or system audio. | |
| note_id | Yes | Note id from list_notes, search_notes or get_note. | |
| speaker | No | Keep only this speaker; matches the raw key (speaker_0, you) or the resolved label. | |
| expect_updated_at | No | note_updated_at from the previous page. Fails with transcript_changed if the note moved, because offset paging would then skip or duplicate segments. |