Documentation Index
Fetch the complete documentation index at: https://docs.memoclaw.com/llms.txt
Use this file to discover all available pages before exploring further.
Price: FREE
Returns aggregate statistics about your stored memories, broken down by type and namespace.
Response (200)
Total number of active (non-deleted, non-expired) memories.
Number of pinned memories.
Memories that have never been recalled.
Sum of all access counts across all memories.
Average importance score across all memories.
ISO 8601 timestamp of the oldest memory.
ISO 8601 timestamp of the newest memory.
Memory count grouped by type.
Memory count grouped by namespace.
Example
curl https://api.memoclaw.com/v1/stats
{
"total_memories": 142,
"pinned_count": 8,
"never_accessed": 23,
"total_accesses": 891,
"avg_importance": 0.64,
"oldest_memory": "2025-06-01T08:00:00Z",
"newest_memory": "2026-02-13T10:30:00Z",
"by_type": [
{ "memory_type": "preference", "count": 45 },
{ "memory_type": "general", "count": 38 },
{ "memory_type": "observation", "count": 25 },
{ "memory_type": "decision", "count": 18 },
{ "memory_type": "project", "count": 12 },
{ "memory_type": "correction", "count": 4 }
],
"by_namespace": [
{ "namespace": "default", "count": 89 },
{ "namespace": "project-memoclaw", "count": 35 },
{ "namespace": "client-acme", "count": 18 }
]
}