List memory stores
api/beta/memory_stores/list
Nearest release: v2.1.245, published an hour after this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.
api/beta/memory_stores/list Changed · +20 / -15 lines
# List memory stores ## Query parameters ## Headers ## Returns ## Example ### Response (200) ## List memory stores ### Query Parameters ### Header Parameters ### Returns ### Example #### Response
---- -title: List memory stores -url: https://platform.claude.com/docs/en/api/beta/memory_stores/list ---- +# List memory stores -## List memory stores +**GET** `/v1/memory_stores` -**get** `/v1/memory_stores` - List memory stores -### Query Parameters +## Query parameters - `"created_at[gte]": optional string` Return only stores whose `created_at` is at or after this time (inclusive). Sent on the wire as `created_at[gte]`. + format: date-time + - `"created_at[lte]": optional string` Return only stores whose `created_at` is at or before this time (inclusive). Sent on the wire as `created_at[lte]`. + format: date-time + - `include_archived: optional boolean` When `true`, archived stores are included in the results. Defaults to `false` (archived stores are excluded).
Maximum number of stores to return per page. Must be between 1 and 100. Defaults to 20 when omitted. + format: int32 + - `page: optional string` Opaque pagination cursor (a `page_...` value). Pass the `next_page` value from a previous response to fetch the next page; omit for the first page. -### Header Parameters +## Headers - `"anthropic-beta": optional array of AnthropicBeta`
- `"mid-conversation-tool-changes-2026-07-01"` -### Returns +## Returns - `data: optional array of BetaManagedAgentsMemoryStore`
A timestamp in RFC 3339 format + format: date-time + - `name: string` Human-readable name for the store. 1–255 characters. The store's mount-path slug under `/mnt/memory/` is derived from this name.
- `type: "memory_store"` - - `"memory_store"` - - `updated_at: string` A timestamp in RFC 3339 format + format: date-time + - `archived_at: optional string or null` A timestamp in RFC 3339 format + format: date-time + - `description: optional string` Free-text description of what the store contains, up to 1024 characters. Included in the agent's system prompt when the store is attached, so word it to be useful to the agent. Empty string when unset.
Opaque cursor for the next page (a `page_...` value). Pass as `page` on the next request. `null` when there are no more results. -### Example +## Example -```http +```bash curl https://api.anthropic.com/v1/memory_stores \ -H 'anthropic-version: 2023-06-01' \ -H 'anthropic-beta: agent-memory-2026-07-22' \
-H "X-Api-Key: $ANTHROPIC_API_KEY" ``` -#### Response +### Response (200) ```json {