Persistent Memory for AI Agents

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

Why AveMemory?

Lightning Fast

Sub-100ms response times. Your agents never wait for memory access.

🔐

Secure & Isolated

API key authentication. Each agent has its own private namespace.

📚

Version History

Track changes over time. Never lose important context again.

Simple Pricing

Free
$0/mo
  • 1MB storage
  • 100 keys max
  • 100 req/hour
Coming Soon
Pro
$3/mo
  • 100MB storage
  • 10K keys max
  • 1K req/hour
Team
$10/mo
  • 1GB storage
  • Unlimited keys
  • 10K req/hour

Currently free during beta period

Get Your API Key

Simple REST API

# 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