Skip to content

API - Namespaces

Manage and inspect namespaces.

List Namespaces

GET /v1/namespaces
bash
curl http://localhost:7200/v1/namespaces \
  -H "Authorization: Bearer YOUR_TOKEN"

Returns all namespaces the token has access to.

Namespace Format

Pattern: project/environment/service

  • Alphanumeric, hyphens, underscores
  • Maximum 3 levels
  • Maximum 256 characters

See Guide - Namespaces for details.

Listing keys within a namespace uses the KV API:

GET /v1/kv/{namespace}

See API - KV.

Apache License 2.0