GET
granola_notes_transcript_get.py
Pages by cursor:
cursor is sent back as cursor.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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.
from charter.packs import granola
result = await granola.notes_transcript_get.ainvoke({"noteId": ...})
cursor is sent back as cursor.| Field | Type | Description |
|---|---|---|
noteId * | 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. matches ^not_[a-zA-Z0-9]{14}$ |
| 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. ≥ 1; ≤ 100 |
Was this page helpful?