Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Store and retrieve key-value memory for agents
GET /api/memory?agentId=agent_123
agentId
{ "memory": { "preferences": { "theme": "dark" }, "context": "Last conversation was about scheduling" }, "agentId": "agent_123", "count": 2, "lastUpdated": "2026-03-19T00:00:00Z" }
POST /api/memory
key
memory
{ "success": true, "agentId": "agent_123", "key": "preferences", "saved": "2026-03-19T00:00:00Z" }
{ "agentId": "agent_123", "memory": { "preferences": { "theme": "dark" }, "context": "Scheduling discussion" } }
{ "success": true, "agentId": "agent_123", "keysUpdated": 2, "saved": "2026-03-19T00:00:00Z" }
Was this page helpful?