---
title: "Search your memories with a natural-language query."
method: GET
path: "/v1/memory/search"
tags: ["Memory"]
---

# Search your memories with a natural-language query.

`GET /v1/memory/search`

Runs a relevance-ranked full-text search over the caller's own memories. Returns an empty result set (not an error) when nothing matches.

## Query parameters

- `q` string, required
- `limit` integer

## Response `200`

Search results returned successfully.

- MemorySearchResponse
  - `results` object[], required
    - `id` string, typeid, required — Den TypeID with 'mem_' prefix and a 26-character base32 suffix.
    - `content` string, required
    - `tags` string[], nullable, required
    - `source` string, required
    - `scope` string, required
    - `createdAt` string, date-time, required
    - `updatedAt` string, date-time, required
    - `score` number, required

## Other responses

- `400` — The search query was invalid.
- `401` — The caller must be signed in to search memories.

---

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