---
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

## Changes

> 39 revisions in range; 2 could not be searched.

- **2026-04-27** `0097ad792c3d` — 1 warning
  - added the new `deletion_requested` enum value to the `organizations/items/status/billing_status` response property for the response status `200`
- **2026-04-15** `a2cc5189d200` — 1 info
  - removed the `deletion_requested` enum value from the `organizations/items/status/billing_status` response property for the response status `200`

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

---

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