> ## Documentation Index
> Fetch the complete documentation index at: https://docs.r28.ai/charter/llms.txt
> Use this file to discover all available pages before exploring further.

# notes_transcript_get

> Read a meeting transcript one page at a time. Use this for any long transcript, and whenever notes_get answers 413 TRANSCRIPT_TOO_LARGE. Each item is one line of speech with who said it and when.

<div className="tool-route"><span className="tool-row-method" data-method="GET">GET</span><code>{"https://public-api.granola.ai/v1/notes/{noteId}/transcript"}</code></div>

```python granola_notes_transcript_get.py theme={null}
from charter.packs import granola

result = await granola.notes_transcript_get.ainvoke({"noteId": ...})
```

<Note>
  Pages by cursor: `cursor` is sent back as `cursor`.
</Note>

## Path parameters

<div className="reference-table">
  | Field                                                          | Type     | Description                                                                                                                                                                                                                                                                                     |
  | -------------------------------------------------------------- | -------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `noteId` <span className="required" title="required">\*</span> | `string` | The ID of the note, as returned by the list endpoint — a `not_` prefix followed by fourteen alphanumeric characters. The UUID in a Granola web app URL is a different identifier and is not accepted here. <span className="field-constraints">matches `^not_[a-zA-Z0-9]&#123;14&#125;$`</span> |
</div>

## Query parameters

<div className="reference-table">
  | Field      | Type      | Description                                                                                                                                        |
  | ---------- | --------- | -------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `cursor`   | `string`  | The opaque cursor returned by the previous page                                                                                                    |
  | `pageSize` | `integer` | The maximum number of transcript items to return. The server returns 50 when this is absent. <span className="field-constraints">≥ 1; ≤ 100</span> |
</div>
