---
title: "List organizations"
method: GET
path: "/organizations"
tags: ["Organizations"]
---

# List organizations

`GET /organizations`

Lists every organization the authenticated user can access, both the ones they own and the ones they are a member of, newest first. Results are paginated: `page` defaults to 1 and `limit` defaults to 10, with a hard maximum of 100. Out-of-range values are clamped silently rather than rejected.

## Query parameters

- `page` integer
- `limit` integer

## Response `200`

OK

- ListOrganizationsResponse
  - `data` Organization[], required
    - `created_at` string, date-time, required
    - `id` string, required
    - `logo` string, nullable
    - `metadata` object, nullable
    - `name` string, required
    - `owner_id` string, required
    - `slug` string, required
    - `updated_at` string, date-time, required
  - `pagination` Pagination, required
    - `has_more` boolean, required
    - `limit` integer, required
    - `page` integer, required
    - `total` integer, required
    - `total_pages` integer, required

## Changes

- **2026-08-24** `def468b0d6ea` — 1 breaking, 4 info
  - the response's body type/format changed from `null, array`/`` to `object`/`` for status `200`
  - added the new optional `query` request parameter `limit`
  - added the new optional `query` request parameter `page`
  - added the required property `data` to the response with the `200` status
  - …1 more
- **2026-07-09** `dad8e2644615` — 1 info
  - endpoint added
- **2026-07-08** `d2f9387037c5` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/authula/apis/authula-api/changes/organizations/get.md)

---

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