> ## Documentation Index
> Fetch the complete documentation index at: https://mintlify.com/open-webui/open-webui/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Note

Retrieve a specific note by ID.

## Authorization

Requires user permission `features.notes` or admin role.

## Path Parameters

<ParamField path="id" type="string" required>
  Unique identifier of the note
</ParamField>

## Response

Returns the note object with full content and write access indicator.

<ResponseField name="id" type="string" required>
  Unique identifier for the note
</ResponseField>

<ResponseField name="user_id" type="string" required>
  ID of the note owner
</ResponseField>

<ResponseField name="title" type="string" required>
  Title of the note
</ResponseField>

<ResponseField name="data" type="object" optional>
  Full note content data

  <Expandable title="properties">
    <ResponseField name="content.md" type="string">
      Complete markdown content
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="folder_id" type="string" optional>
  ID of the folder containing the note
</ResponseField>

<ResponseField name="access_grants" type="array">
  Access control grants for the note
</ResponseField>

<ResponseField name="write_access" type="boolean" required>
  Indicates if the current user has write access to the note
</ResponseField>

<ResponseField name="updated_at" type="integer" required>
  Unix timestamp of last update
</ResponseField>

<ResponseField name="created_at" type="integer" required>
  Unix timestamp of creation
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://your-domain.com/api/notes/note_abc123" \
    -H "Authorization: Bearer YOUR_TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "note_abc123",
    "user_id": "user_123",
    "title": "Meeting Notes",
    "data": {
      "content": {
        "md": "# Meeting Summary\n\nDiscussed project roadmap and timeline..."
      }
    },
    "folder_id": "folder_xyz",
    "access_grants": [
      {
        "grantee_type": "group",
        "grantee_id": "group_456",
        "permission": "read"
      }
    ],
    "write_access": true,
    "updated_at": 1709395200,
    "created_at": 1709308800
  }
  ```

  ```json 401 Unauthorized theme={null}
  {
    "detail": "Unauthorized"
  }
  ```

  ```json 403 Forbidden theme={null}
  {
    "detail": "An error occurred"
  }
  ```

  ```json 404 Not Found theme={null}
  {
    "detail": "Not Found"
  }
  ```
</ResponseExample>

## Access Control

* Users must have `features.notes` permission enabled
* Returns notes where user is the owner OR has read access via access grants
* `write_access` is true if:
  * User is admin
  * User is the note owner
  * User has write permission via access grants
  * Note has public read access
* Admin users can access all notes
* Non-admin users need explicit read permission
