API Reference
Stats
The Stats API provides usage statistics and metrics for your OpenMemoryX account.
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl https://t0ken.ai/api/v1/stats \
-H "X-API-Key: omx_your_api_key"
{
"success": true,
"data": {
"total_memories": 1523,
"total_projects": 5,
"api_calls_today": 245,
"api_calls_this_month": 5421,
"storage_used_mb": 45.2,
"storage_limit_mb": 100,
"cognitive_sectors": {
"episodic": 234,
"semantic": 678,
"procedural": 156,
"emotional": 312,
"reflective": 143
}
}
}
| Field | Description |
|---|---|
total_memories | Total number of stored memories |
total_projects | Number of projects created |
api_calls_today | API calls made today |
api_calls_this_month | API calls made this month |
storage_used_mb | Storage used in megabytes |
storage_limit_mb | Storage limit for your tier |
cognitive_sectors | Breakdown of memories by cognitive sector |
Was this page helpful?