v3

latestOpenAPI 3.0.0private2026-07-31264964.3 KB

Return note children by parent note id

Return note children by parent note id

get/notes/{noteId}/children

Path parameters

noteIdstring required

Note id to fetch its children

Query parameters

cursorstring

Cursor to use to continue fetching the note children It's only used if current note has more than 50 children

orderBy'title' | 'listPosition' | 'lastEditedAt'

Field to order note children by.

Optional: field to order the children by. Defaults to title.

orderDirection'asc' | 'desc'

Direction to sort by.

Optional: sort direction (asc or desc). Defaults to asc. Use orderBy=listPosition&orderDirection=desc to match the sidebar order.

includeDescendantsboolean

Optional: when true, returns the whole subtree (flattened) instead of only direct children. Rebuild the hierarchy with each note's parentNoteId. Defaults to false.

Response

Ok

totalnumber double required

Total number of children

hasNextPageboolean required

Is there any other page to fetch

nextCursorstring nullable required

Next cursor to continue fetching the paginate children