> ## 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_get

> Read one meeting note: its AI summary, the people who attended, the calendar event it was taken against, and the folders it belongs to. Pass include='transcript' to get the transcript inline as well. A transcript too large to inline answers 413 TRANSCRIPT_TOO_LARGE. Read it with notes_transcript_get instead.

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

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

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

## 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                                                                                                                                                                                      |
  | --------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | `include` | `string` | Include the note transcript in the response. If it is too large to return inline, Get Note returns `TRANSCRIPT_TOO_LARGE`; retrieve it in pages from `/v1/notes/&#123;note_id&#125;/transcript`. |
</div>
