Stats
Get counts and metadata about your memory store.
GET
/api/v1/statsAPI Key
Stored locally, never sent to servers
Stats
const options = { method: 'GET', headers: {'X-API-Key': 'mb_live_xxx'},};fetch('https://api.mem-brain.io/api/v1/stats', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));{ "total_memories": 42, "graph_nodes": 89, "graph_edges": 134}