Developer API

Build with REM Labs

Memory API, Dream Engine, and intelligence tools for your AI agents.

Base URL https://remlabs.ai/v1/
API Reference

Core endpoints

Five requests cover most use cases. Authenticate with your API key in the Authorization header.

POST /v1/memory/store Store a memory
// 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" }
GET /v1/memory/search Semantic search
POST /v1/memory/dream/start Run Dream Engine
// 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 /v1/memory/briefing Morning brief
// 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 /v1/memory/score Brain Glow score
// 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
  } }
Quick Start

Up and running in two steps

1

Get your API key

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
2

Make your first request

Store a memory, search it back, or trigger a Dream. The API returns JSON and uses standard Bearer auth.

See examples

Start building with persistent memory

Free tier. No credit card. Your agents remember everything.

Get started free