Memory API, Dream Engine, and intelligence tools for your AI agents.
Five requests cover most use cases. Authenticate with your API key in the Authorization header.
// Store a memory curl -X POST https://remlabs.ai/v1/memory/store \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "content": "User prefers dark mode in all apps", "type": "preference", "tags": ["ui", "settings"] }' // Response { "id": "mem_7x9k...", "status": "stored" }
// Semantic search across all memories curl https://remlabs.ai/v1/memory/search \ -H "Authorization: Bearer YOUR_API_KEY" \ -G -d "q=what ui preferences does the user have" \ -d "limit=5" // Response { "results": [ { "content": "User prefers dark mode...", "score": 0.94, "tags": ["ui", "settings"] } ] }
// Trigger Dream Engine — consolidate, cross-link, decay curl -X POST https://remlabs.ai/v1/memory/dream/start \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "strategy": "full", "enable_creative_leaps": true }' // Response { "dream_id": "drm_a3f...", "status": "running", "strategies": ["consolidate", "cross_link", "decay", "creative_leaps"] }
// Get today's Morning Briefing curl https://remlabs.ai/v1/memory/briefing \ -H "Authorization: Bearer YOUR_API_KEY" // Response { "date": "2026-04-07", "summary": "3 new connections found overnight...", "insights": [ ... ], "action_items": [ ... ] }
// Get Brain Glow intelligence score curl https://remlabs.ai/v1/memory/score \ -H "Authorization: Bearer YOUR_API_KEY" // Response { "score": 847, "level": "Luminary", "breakdown": { "memory_depth": 92, "connection_density": 78, "dream_activity": 85 } }
Sign in with Google, then grab your key from your Account page. Free tier includes 1,000 memories and nightly Dream cycles.
Get your API key →Store a memory, search it back, or trigger a Dream. The API returns JSON and uses standard Bearer auth.
See examples →