Memory as an API.
Remember. Recall. Forget.
A tiny, fast, sovereign memory layer for AI agents. Three verbs. No schemas, no vector DB to run, no filesystem to manage. Just write what you want to remember — and ask for it later in plain language.
Three verbs, zero ceremony
remember, recall, forget. No schemas, no vector DB to run, no filesystem to manage.
Semantic by default
Every memory is embedded with a multilingual model. Tiered recall returns the right answer in under 100 ms.
One memory per agent
Isolate memories per project, per client, or per deployment. Each with its own API key. Leak one, the others stay safe.
Yours to keep
Full history. Full JSONL export. Leave with one endpoint. No vendor lock-in, no data held hostage.
60-second tour
curl -X POST https://memory.automators.work/v1/remember \
-H "Authorization: Bearer ctxk_..." \
-H "Content-Type: application/json" \
-d '{
"content": "User prefers concise answers in Spanish.",
"type": "preference",
"tags": ["user:alice", "lang:es"]
}'
# → { "id": "2026-04-17T14-22-03-8a4f2c",
# "created_at": 1744900923000, ... }
curl -X POST https://memory.automators.work/v1/recall \
-H "Authorization: Bearer ctxk_..." \
-H "Content-Type: application/json" \
-d '{ "query": "how does this user like their responses?",
"top_k": 3 }'
# → { "results": [
# { "id": "...", "content": "User prefers concise...",
# "score": 0.87, "tags": ["user:alice","lang:es"] }
# ],
# "took_ms": { "embed": 34, "coarse": 2, "fine": 6, "total": 48 } }
# By id:
curl -X DELETE https://memory.automators.work/v1/memories/2026-04-17T14-22-03-8a4f2c \
-H "Authorization: Bearer ctxk_..."
# Or by semantic query (dry-run first, then confirm):
curl -X POST https://memory.automators.work/v1/forget \
-H "Authorization: Bearer ctxk_..." \
-H "Content-Type: application/json" \
-d '{ "query": "anything about old API keys", "confirm": true }'
Pricing
Start free. Upgrade when you outgrow it.
Free
$0 / month
- 1 memory
- 100 requests / hour
- Semantic recall
- Full export (JSONL)
Pro
$19 / month
- 10 memories
- 10,000 requests / hour
- Priority embedding pool
- Email support
Enterprise
Talk to us
- Unlimited memories
- 100k+ requests / hour
- SSO + SAML
- SLA
Get your API key
Free to start. No credit card. Your API key is shown exactly once — save it somewhere safe.