List Namespaces
List all namespaces for a user
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Include read-only system namespaces (e.g. sample-data)
Response detail level. 'full' (default) returns complete namespace objects. 'summary' omits heavy per-namespace config (payload_indexes, feature_extractors, vector_inference_map, vector_configs) — ~93% smaller — for high-frequency list/switcher views. Fetch full config via GET /v1/namespaces/{namespace_identifier}.
full, summary 1 <= x <= 10001 <= x <= 10000 <= x <= 10000x >= 1Body
Request schema for listing namespaces.
Optional filters to apply to the namespace list. Supports filtering by namespace_id or namespace_name.
{
"namespace_id": "ns_abc123",
"namespace_name": { "$regex": "^my_namespace" }
}Optional sort criteria for the namespace list.
{
"direction": "asc",
"field": "namespace_name"
}Search term for wildcard search across namespace_id, namespace_name, description, and other text fields.
"ns_abc123"
If True, filters and search will be case-sensitive
Response
Successful Response
Response schema for listing namespaces.
List of namespaces matching the query
Pagination information for the current result window
Total number of namespaces that match the query
Aggregate statistics across all namespaces in the result

