Documentation Index
Fetch the complete documentation index at: https://mintlify.com/teng-lin/notebooklm-py/llms.txt
Use this file to discover all available pages before exploring further.
client.notes manages user-authored text notes inside a notebook. Notes are plain-text documents with a title and a content body — they appear in the notebook’s Notes panel. Mind maps generated by client.artifacts.generate_mind_map() are also stored as notes internally, but they contain structured JSON content rather than prose. The list() method excludes mind maps automatically; use list_mind_maps() to retrieve them separately.
Methods
list(notebook_id)
Returns all text notes in a notebook. Mind maps are excluded.
The notebook ID.
List of
Note objects. Mind maps (notes whose content contains "children": or "nodes":) are filtered out.create(notebook_id, title, content)
Creates a new text note.
The notebook ID.
Display title for the note.
Initial text content. Can be updated later with
update().The newly created
Note object.get(notebook_id, note_id)
Retrieves a single note by ID.
The notebook ID.
The note ID.
Note object if found, None if the note does not exist.update(notebook_id, note_id, content, title)
Updates the content and/or title of an existing note.
The notebook ID.
The note ID to update.
The new text content.
The new title.
delete(notebook_id, note_id)
Permanently deletes a text note.
The notebook ID.
The note ID to delete.
True when deletion succeeds.list_mind_maps(notebook_id)
Returns all mind maps stored in the notebook’s notes system.
The notebook ID.
List of raw mind map records. Each record is a list where index
0 is the mind map ID.Mind maps are detected by checking whether the note content contains
"children": or "nodes": JSON keys, which indicate a hierarchical mind map data structure rather than plain text.delete_mind_map(notebook_id, mind_map_id)
Permanently deletes a mind map.
The notebook ID.
The mind map ID (index
0 of a record from list_mind_maps()).True when deletion succeeds.Note dataclass
Unique note identifier.
Display title of the note.
Text content of the note.
Creation timestamp, or
None if unavailable.