Checking…Sign in

Quickstart

From zero to your first honest recall in under a minute.

1Get your API key

Create a key on the API Keys screen, or paste one in the Playground. It looks like scm_live_….

2Store a memory
curl -X POST https://api.memory.shrinam.com/v1/memory/ingest \
  -H "Authorization: Bearer scm_live_***" \
  -H "Content-Type: application/json" \
  -d '{"content":"Ananya works as a data scientist at Acme Corp in Bangalore."}'
3Recall it — or get an honest ⊥
curl -X POST https://api.memory.shrinam.com/v1/memory/recall \
  -H "Authorization: Bearer scm_live_***" \
  -H "Content-Type: application/json" \
  -d '{"query":"Where does Ananya work?","limit":5}'

Turn on the honesty layer in Settings so recall returns ⊥ instead of a wrong guess when the answer isn’t stored.