Skip to main content
Memories are knowledge Atlas carries across interactions. User memories capture personal preferences, domain background, and workflow conventions. Entity memories capture hardware-specific context attached to nodes in the metagraph. Entity memory endpoints are documented under Metagraph. See Adding a Personal Skill & System Memory for a workflow guide.

Endpoints


Get memories

GET /memories Returns the current memory content for the authenticated user. Example request:
Response fields: Example response:

Set memories

PUT /memories Replaces the current memory content entirely. Memory writes are versioned automatically. Request body: Example request:
Returns the updated memory object with the same fields as Get memories.

Get version history

GET /memories/history Returns all previous versions of the user’s memory document. Example request:
Response fields (array): Example response:

Restore a version

POST /memories/restore Rolls back the user’s memory to a previous version. The restore creates a new version entry rather than overwriting history. Request body: Example request:
Returns the restored memory object with the same fields as Get memories.