Skip to main content
POST
/
brain
/
stats
curl --request POST \
  --url https://api.atlas.bsyncs.com/brain/stats \
  --header 'X-API-Key: atlas_your_key_here' \
  --header 'Content-Type: application/json' \
  --data '{
    "user_id": "user-123"
  }'
{
  "episodic_count": 142,
  "semantic_entities": 87,
  "semantic_relations": 203,
  "models_loaded": true
}
Stats calls do not count against your monthly ops limit.

Authorizations

X-API-Key
string
required
Your Atlas API key. Format: atlas_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.

Body

user_id
string
required
Namespace to query. Overridden server-side from your API key.
persona
string
default:"shared"
Memory persona to report stats for.

Response

episodic_count
integer
Total vector chunks stored in Qdrant for this namespace.
semantic_entities
integer
Unique entity nodes in the Neo4j knowledge graph.
semantic_relations
integer
Relationship edges in the Neo4j knowledge graph.
models_loaded
boolean
Whether Qwen 0.5B and MiniLM are loaded and ready.
curl --request POST \
  --url https://api.atlas.bsyncs.com/brain/stats \
  --header 'X-API-Key: atlas_your_key_here' \
  --header 'Content-Type: application/json' \
  --data '{
    "user_id": "user-123"
  }'
{
  "episodic_count": 142,
  "semantic_entities": 87,
  "semantic_relations": 203,
  "models_loaded": true
}