cURL
curl --request GET \ --url https://api.memoclaw.com/v1/namespaces
{ "namespaces": [ { "name": "<string>", "count": 123, "last_memory_at": "<string>" } ], "total": 123 }
GET /v1/namespaces — List all namespaces with memory counts.
Show Namespace object
curl https://api.memoclaw.com/v1/namespaces \ -H "Authorization: Bearer <token>"
{ "namespaces": [ { "name": "default", "count": 42, "last_memory_at": "2026-02-13T10:30:00Z" }, { "name": "acme-project", "count": 15, "last_memory_at": "2026-02-12T16:45:00Z" } ], "total": 2 }