---
title: "Get organizations"
method: GET
path: "/v1/organizations"
tags: ["Organization"]
---

# Get organizations

`GET /v1/organizations`

Returns the list of organizations in the system.

## Query parameters

- `page_size` integer
- `page_token` string

## Response `200`

OK

- OrganizationPage
  - `items` Organization[], required
    - `id` string, required — Unique identifier of the organization.
    - `slug` string, required — Globally unique canonical kebab-case slug. Immutable after create.
    - `name` string, required — Name of the organization.
    - `email` string, email, required — Email address of the organization.
    - `logo` string, uri, nullable, required — Logo of the organization.
    - `website` string, uri, nullable, required — Work title of the user.
    - `status` 'active' | 'deleted', required — Status of the organization.
    - `member_count` integer, nullable — Number of members in the organization when projected.
    - `document_count` integer, nullable — Number of documents that belong to the organization when projected.
    - `team_count` integer, nullable — Number of teams in the organization when projected.
    - `namespace_count` integer, nullable — Number of namespaces in the organization when projected.
    - `created_at` string, date-time, required — Date when the organization was created.
    - `updated_at` string, date-time, nullable, required — Date when the organization was updated.
  - `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
- `403` — Forbidden
- `500` — Internal Server Error

## Changes

- **2026-08-26** `836ecb425096` — 1 info
  - added the required property `items/items/slug` to the response with the `200` status
- **2026-08-18** `addaba6fddad` — 1 info
  - added the optional property `items/items/document_count` to the response with the `200` status
- **2026-08-16** `6965ecf3ab92` — 1 breaking, 2 warning, 5 info
  - the response's body type changed from `array` to `object` for status `200`
  - deleted the `query` request parameter `limit`
  - deleted the `query` request parameter `offset`
  - added the new optional `query` request parameter `page_size`
  - …4 more
- **2023-06-14** `1057260fde29` — 2 info
  - api tag `Organization` added
  - api tag `Organizations` removed
- **2023-05-24** `11f0e17a96b4` — 1 info
  - endpoint added

[Full history](https://skmtc.dev/opcotech/apis/elemo-api/changes/v1/organizations/get.md)

---

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