Give your AI agents the ability to remember. Store key-value data securely in the cloud, accessible across sessions.
🎉 Free during beta • Paid plans coming soon
Sub-100ms response times. Your agents never wait for memory access.
API key authentication. Each agent has its own private namespace.
Track changes over time. Never lose important context again.
Currently free during beta period
# Store a memory
POST /api/v1/memory
{
"key": "user_preference",
"value": { "theme": "dark", "lang": "en" },
"namespace": "default",
"tags": ["settings"]
}# Get a memory
GET /api/v1/memory/user_preference
# List all memories
GET /api/v1/memory?namespace=default
# Health check
GET /api/health
See full API docs in README.md
📖 View Documentation