Quickstart
This page follows the currentmemorose-server API directly.
What you need
- a running Memorose server on
http://127.0.0.1:3000 - dashboard credentials
jquuidgen
In the current single-node default setup, Memorose auto-initializes Raft at startup. You do not need to call
/v1/cluster/initialize before sending writes unless you intentionally disabled raft.auto_initialize.The happy path
- Log in and get a bearer token.
- Create a stream ID.
- Ingest one event.
- Retrieve against that stream.
- Check whether consolidation backlog is clear.
1. Set base variables
2. Log in and get a token
Current/v1 routes accept either a dashboard JWT bearer token or an API key. For local development, the dashboard login is the fastest path.
3. Create a stream ID
4. Ingest an event
5. Retrieve memory
results[].unit.level: where the retrieved memory sits in the hierarchyresults[].unit.memory_type:factualorproceduralscore: final ranking score after retrieval fusionquery_time_ms: observed server-side latency for the retrieval call
6. Check consolidation backlog
"ready": true, the current pending-event backlog is clear.

