Skip to main content
The List Memories endpoint returns every memory stored for a given user_id and agent_id, ordered from most recent to oldest. You can use it to build a memory browser in your dashboard, audit what your agent knows about a user, or debug unexpected behaviour. Combine limit and offset to page through large memory sets without loading everything at once.
Endpoint: GET https://api.remem.online/memories

Request Headers

Query Parameters

string
required
The ID of the user whose memories you want to list.
string
required
The ID of the agent whose memories you want to list.
string
Filter results to a specific memory type. Accepted values: episodic, semantic, summary. Omit to return all types.
integer
default:"20"
Number of memories to return per page. Minimum 1, maximum 100.
integer
default:"0"
Zero-based pagination offset. Use in combination with limit to step through pages.

Examples

Response

200 — Success

Response Fields

array
Array of Memory objects. See Search Memories for the full Memory object field reference.
integer
Total number of memories stored for this user+agent pair across all pages.
integer
The limit value applied to this response.
integer
The offset value applied to this response.

Error Responses