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

# List Notes

`GET /api/v1/notes/`

## Query parameters

- `q` string, nullable — Full-text query against title + body.
- `identity_id` string, uuid, nullable — Filter to notes granted to this identity (joins against the note_access table).
- `limit` integer
- `offset` integer
- `order` 'recent' | 'created'

## Response `200`

Successful Response

- NoteResponse[]
  - `id` string, uuid, required
  - `organization_id` string, required
  - `created_by` string, required
  - `title` string, nullable, required
  - `body` string, required
  - `status` 'active' | 'paused' | 'deleted', required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required
  - `access` NoteAccessResponse[] — Raw ``note_access`` rows for this note, inlined so the console can skip a follow-up ``GET /notes/{id}/access`` per row. Empty when the note has zero grants (typical for human-authored notes); not a 'not loaded' sentinel — every response path populates this field.
    - `id` string, uuid, required
    - `note_id` string, uuid, required
    - `identity_id` string, uuid, required
    - `created_at` string, date-time, required

## Other responses

- `422` — Validation Error
- `4XX` — Client error with Support Agent information.
- `5XX` — Server error with Support Agent information.

---

[API](https://skmtc.dev/inkbox/apis/inkbox-api.md) · [All operations](https://skmtc.dev/inkbox/apis/inkbox-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/inkbox/inkbox-api/revisions/31f357e7e6f8/schema)
