get_note
Retrieve full note content by ID or forgiving title match, with windowing for large notes, section extraction, and optional wikilink resolution.
Instructions
Get full note content by id or title. Title matching is case-insensitive and forgiving: an exact match wins, otherwise it falls back to prefix then substring, so a unique partial title resolves. An ambiguous title returns the candidate list (id + title) to retry with. Large notes are windowed: content is capped at 20000 chars by default (see limit/offset) — check content_truncated and content_total_length in the response, and pass next_offset back as offset to fetch the rest. Every response carries headings — the H1–H3 outline with character offsets, so a truncated note still shows what is in the part you did not get. Jump there with that offset, or name it in section to get that heading and its body alone — with section, headings narrows to that section's own subheadings too (offsets re-based to the section's own start, matching offset/limit's meaning in that mode), not the whole note's. Pass resolve_links: true to also resolve [[wikilinks]] inside it one level deep — use when you need a note's linked context without extra round-trips. Each linked note comes back as id/title/folder_path only by default; pass include_content:true for the full text of each (expensive if the note links to many others), capped at 4000 chars — call get_note on a specific id for its full text. updated_at moves on any stored change, including another note's rename rewriting a [[link]] to this one — pass it back as expected_updated_at on a write. content_updated_at only moves when THIS note's own title/content/folder/tags were actually edited — that's the one that answers "did anyone really touch this". Unresolved links (targets not found) are listed separately.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | ||
| limit | No | Max characters of content to return | |
| title | No | ||
| offset | No | Character offset into content to start from | |
| section | No | Return only this section (heading text or slug, case-insensitive) and its body | |
| resolve_links | No | Also resolve [[wikilinks]] inside the note one level deep | |
| include_content | No | With resolve_links: include full text of linked notes, not just id/title/folder_path |