---
title: "List notes"
method: GET
path: "/notes/list"
tags: ["Notes"]
---

# List notes

`GET /notes/list`

List notes with optional folder filtering and cursor pagination.

## Query parameters

- `limit` integer
- `cursor` string
- `folder_id` string, uuid

## Response `200`

Paginated list of notes.

- object
  - `data` Note[]
    - `id` string, uuid
    - `user_id` string
    - `client_note_id` string, nullable
    - `title` string, nullable
    - `content` string
    - `enhanced_content` string, nullable
    - `note_type` 'personal' | 'meeting' | 'upload'
    - `folder_id` string, uuid, nullable
    - `participants` string, nullable — JSON-serialized list of meeting participants (read-only; populated by the desktop sync layer for meeting notes).
    - `calendar_event_id` string, nullable — Linked calendar event ID (read-only; populated by the desktop sync layer when a recording is started from a calendar event).
    - `created_at` string, date-time
    - `updated_at` string, date-time
  - `has_more` boolean
  - `next_cursor` string, nullable

## Other responses

- `401` — Invalid API key.
- `429` — Rate limit exceeded.

---

[API](https://skmtc.net/openwhispr/apis/openwhispr-api.md) · [All operations](https://skmtc.net/openwhispr/apis/openwhispr-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/openwhispr/openwhispr-api/versions/d1578f9ae6e5/schema)
