---
title: "Search notes"
method: POST
path: "/notes/search"
tags: ["Notes"]
---

# Search notes

`POST /notes/search`

Search notes using hybrid semantic (vector) and full-text search. Costs 5x against the rate limit.

## Request body

- object
  - `query` string, required — Search text.
  - `limit` integer — Max results to return.

## Response `200`

Search results ranked by relevance.

- object
  - `data` NoteSearchResult[]
    - `id` string, uuid
    - `title` string, nullable
    - `content` string
    - `enhanced_content` string, nullable
    - `note_type` string
    - `created_at` string, date-time
    - `updated_at` string, date-time
    - `score` number — Relevance score

---

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