List an Organization's Repositories

GET /api/0/organizations/{organization_slug}/repos/

Return a list of version control repositories for a given organization.

Path Parameters

organization_slug (string)
REQUIRED

The organization short name.

Scopes

<auth_token> requires one of the following scopes:
  • org: read
curl https://sentry.io/api/0/organizations/{organization_slug}/repos/ \
 -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
[
  {
    "dateCreated": "2018-11-06T21:19:58.536Z",
    "id": "3",
    "name": "sentry/sentry"
  }
]