---
title: "List Memories"
method: GET
path: "/assistants/{assistant_id}/memories"
tags: ["Memories"]
---

# List Memories

`GET /assistants/{assistant_id}/memories`

List memories for an assistant with optional server-side pagination.

## Path parameters

- `assistant_id` string, uuid, required

## Query parameters

- `page` integer — Page number (1-indexed). Omit to fetch all.
- `page_size` integer — Items per page

## Headers

- `authorization` string, nullable
- `x_session_token` string, nullable

## Response `200`

Successful Response

- MemoriesListResponse — Schema for listing memories with optional pagination
  - `memories` MemoryResponse[] — List of memories
    - `id` string, required — Unique memory identifier
    - `content` string, required — The memory content
    - `metadata` object, nullable — Memory metadata
    - `score` number, nullable — Relevance score for search results
    - `created_at` string, nullable — Memory creation timestamp
    - `updated_at` string, nullable — Memory update timestamp
  - `total_count` integer — Total number of memories
  - `page` integer, nullable — Current page number (1-indexed)
  - `page_size` integer, nullable — Items per page
  - `total_pages` integer, nullable — Total number of pages

## Other responses

- `422` — Validation Error

---

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