---
title: "List reachable namespaces"
method: GET
path: "/v1/namespaces"
tags: ["Namespace"]
---

# List reachable namespaces

`GET /v1/namespaces`

Return a cursor-paginated page of namespaces the actor can reach. A namespace is reachable when the actor has namespace.read on it or can read at least one descendant. Organization stubs are included without requiring organization.read.

## Query parameters

- `page_size` integer
- `page_token` string

## Response `200`

OK

- AccessibleNamespacePage
  - `items` AccessibleNamespace[], required
    - `id` string, required — Unique identifier of the namespace.
    - `name` string, required — Name of the namespace.
    - `description` string, nullable — Description of the namespace.
    - `project_count` integer, nullable — Number of projects in the namespace when projected.
    - `document_count` integer, nullable — Number of documents in the namespace when projected.
    - `created_at` string, date-time, required — Date when the namespace was created.
    - `updated_at` string, date-time, nullable, required — Date when the namespace was updated.
    - `organization` PartialOrganization, required — Owning organization stub returned with a reachable namespace.
      - `id` string, required — Unique identifier of the organization.
      - `name` string, required — Name of the organization.
  - `page_info` PageInfo, required — Cursor pagination metadata for a page of results.
    - `next_page_token` string, nullable — Opaque token for the next page. Omitted when has_more is false.
    - `has_more` boolean, required — Whether more results are available.
    - `total_count` integer, nullable — Optional total count when requested by the server.

## Other responses

- `400` — Bad request
- `401` — Unauthorized request
- `500` — Internal Server Error

---

[API](https://skmtc.net/opcotech/apis/elemo-api.md) · [All operations](https://skmtc.net/opcotech/apis/elemo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/opcotech/elemo-api/revisions/e51f70b36692/schema)
