GET · Namespaces (legacy)

Lightweight list of namespaces with counts. Prefer /api/projects for the richer shape.

GET /api/namespaces

Legacy endpoint returning a lightweight namespace list. Each row has just name, count, and last_updated — no description, metadata, or archived flag. For the richer shape (and the same underlying data), use /api/projects.

curl https://www.mnueron.com/api/namespaces \
  -H "Authorization: Bearer $MNUERON_API_TOKEN"

Response

[
  { "name": "default",    "count": 412, "last_updated": 1737070000000 },
  { "name": "preferences", "count": 18,  "last_updated": 1737069000000 }
]

Ordered by last_updated DESC. The dashboard's namespace sidebar uses this endpoint; new integrations should prefer /api/projects to get the description / archived metadata.

Last updated 2026-05-24edit