---
title: "List memories for current user"
method: GET
path: "/api/v1/me/memories"
tags: ["humanApiMemories"]
---

# List memories for current user

`GET /api/v1/me/memories`

Lists memories accessible to the authenticated user:
- Memories about the user (subject_id = user's UUID)
- Organization-scoped memories in the user's organization
- Optionally filter by chat room to see room-level memories

Unlike agents, users can see memories from ALL agents in their organization
that are about them or in rooms they participate in.

**Pagination:** Use `cursor` + `limit` (recommended) OR `page` + `page_size` (deprecated, sunset 2026-10-01).
Do NOT mix families.

## Query parameters

- `cursor` string
- `limit` integer
- `page` integer
- `chat_room_id` string
- `scope` string
- `system` string
- `type` string
- `segment` string
- `content_query` string
- `page_size` integer
- `status` string

## Headers

- `X-API-Key` string, required

## Response `200`

User Memories

- MemoriesListUserMemoriesResponse200 — unresolved $ref

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `422` — Invalid pagination params (invalid/unsupported cursor, or mixed cursor + offset families)

---

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