Skip to main content
Organization endpoints allow you to list organizations you have access to and retrieve detailed information about a specific organization.

Base URL

All Sentry API requests are made to:
https://sentry.io/api/0/
For the EU data region, use https://de.sentry.io/api/0/.

List organizations

GET /api/0/organizations/
Returns a list of organizations that the authenticated user belongs to. Required scope: org:read

Query parameters

owner
boolean
Restricts results to organizations where the authenticated user is an owner.
cursor
string
Pagination cursor returned in the Link response header. Pass this value to retrieve the next page of results.

Example request

curl https://sentry.io/api/0/organizations/ \
  -H "Authorization: Bearer <token>"

Example response

[
  {
    "id": "1",
    "slug": "the-interstellar-jurisdiction",
    "name": "The Interstellar Jurisdiction",
    "dateCreated": "2018-11-06T21:19:55.101Z",
    "status": {
      "id": "active",
      "name": "active"
    },
    "features": ["performance-view", "releases"],
    "isEarlyAdopter": false
  }
]

Retrieve an organization

GET /api/0/organizations/{organization_id_or_slug}/
Returns details for a single organization. Required scope: org:read

Path parameters

organization_id_or_slug
string
required
The ID or slug of the organization to retrieve.

Example request

curl https://sentry.io/api/0/organizations/the-interstellar-jurisdiction/ \
  -H "Authorization: Bearer <token>"

Example response

{
  "id": "1",
  "slug": "the-interstellar-jurisdiction",
  "name": "The Interstellar Jurisdiction",
  "dateCreated": "2018-11-06T21:19:55.101Z",
  "status": {
    "id": "active",
    "name": "active"
  },
  "features": ["performance-view", "releases"],
  "isEarlyAdopter": false,
  "requiresSso": false,
  "storeCrashReports": 0
}

Response fields

id
string
The unique ID of the organization.
slug
string
The URL-friendly identifier for the organization.
name
string
The display name of the organization.
dateCreated
string
ISO 8601 timestamp of when the organization was created.
status
object
The current status of the organization. Contains id and name fields. Common value: active.
features
array
A list of feature flags enabled for the organization.
isEarlyAdopter
boolean
Whether the organization is enrolled in early adopter features.
requiresSso
boolean
Whether SSO is required to access the organization.
storeCrashReports
integer
The number of crash reports stored per issue. 0 means disabled.

Build docs developers (and LLMs) love