---
title: "Get note"
method: GET
path: "/notes/{id}"
tags: ["Notes"]
---

# Get note

`GET /notes/{id}`

Get a single note by ID.

## Path parameters

- `id` string, uuid, required

## Response `200`

The note.

- 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

## Other responses

- `404` — Note not found.

---

[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)
