v64

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-03124241726.5 KB
Memory

List memory stores

Returns a cursor-paginated page of the project's memory stores, one roll-up row each (record count, tokens, last-updated, sessions, users). A store groups records under gen_ai.memory.store.id; the empty-string store is the unattributed bucket.

get/v1/projects/{projectSlug}/memory/stores

Path parameters

projectSlugstring required

Project slug (human-readable identifier)

Project slug (human-readable identifier)

Query parameters

cursorstring

Opaque cursor returned in a previous response's nextCursor. Omit on the first page.

Opaque cursor returned in a previous response's nextCursor. Omit on the first page.

limitinteger

Page size. Defaults to 50; max 200.

Page size. Defaults to 50; max 200.

sort'lastUpdated' | 'lastRead' | 'records' | 'tokens' | 'sessions' | 'users'

Field to sort by. Defaults to lastUpdated (most recently written first).

Field to sort by. Defaults to lastUpdated (most recently written first).

direction'asc' | 'desc'

Sort direction. Defaults to desc.

Sort direction. Defaults to desc.

Response

Page of memory stores

nextCursorstring nullable required

Opaque cursor for fetching the next page. null when there are no more pages. Pass it back in cursor to continue.

hasMoreboolean required

true when there is at least one more page after this one.