---
title: "Get list of organizations"
method: GET
path: "/organizations"
tags: ["Organizations"]
---

# Get list of organizations

`GET /organizations`

Retrieve the list of all organizations the authenticated user belongs to, including their IDs and names. This endpoint allows users to view all organizations they have access to.

## Response `200`

OK

- object
  - `organizations` object[], required — List of organizations the user has access to
    - `id` string, required
    - `name` string, required — Human-readable name of the organization
    - `status` OrganizationStatus, required
      - `status` 'enabled' | 'disabled', required — Indicates whether the organization is active, it's computed as `!disabled_by_admin AND billing_status == 'ok'`
      - `disabled_by_admin` boolean, required — Indicates if the organization has been disabled by an admin
      - `admin_reason` string — Reason for the current admin status
      - `billing_status` 'ok' | 'no_payment_method' | 'invoice_overdue' | 'unknown' | 'deletion_requested', required — Indicates the status of the organization from a billing perspective
      - `billing_reason` string — Reason for the current billing status
      - `usage_tier` 't1' | 't2', required — Usage tier of the organization. t1 is the default for new organizations, t2 is assigned when a valid payment method is on file.
      - `last_updated` string, date-time, required — Timestamp of the last update to the organization's status
      - `created_at` string, date-time — Timestamp when the organization was created

## Other responses

- `400` — Error returned when the request is malformed or contains invalid parameters
- `401` — Error returned when authentication or authorization fails
- `404` — Generic error response
- `5XX` — Unexpected Error

---

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