v3

latestOpenAPI 3.1.02026-07-3182354.4 KB

List notes

get/v1/notes

Query parameters

string date
OR
string date-time
string date
OR
string date-time
string date
OR
string date-time
folder_idstring

Return notes in this folder and any of its child folders. Use the list folders endpoint to discover folder IDs.

Example:fol_4y6LduVdwSKC27
cursorstring

The cursor to continue from

Example:eyJjcmVkZW50aWFsfQ==
page_sizeinteger

Maximum number of notes to return per page

Example:10

Response

List of notes

hasMoreboolean required

Whether there are more notes to fetch

cursorstring nullable required

The cursor to continue from

Example response

{
  "notes": [
    {
      "id": "not_1d3tmYTlCICgjy",
      "title": "Quarterly yoghurt budget review",
      "owner": {
        "name": "Oat Benson",
        "email": "oat@granola.ai"
      },
      "created_at": "2026-01-27T15:30:00Z",
      "updated_at": "2026-01-27T16:45:00Z"
    }
  ],
  "hasMore": true,
  "cursor": "eyJjcmVkZW50aWFsfQ=="
}
All 8 operations