Organizations

List onboarded repositories for an organization

Lists repositories that CodeRabbit currently records as active for an organization. The organization_id is the CodeRabbit organization UUID returned by GET /organizations. Enterprise plan only.

get/v1/organizations/{organization_id}/repositories

Path parameters

organization_idstring uuid required

Query parameters

limitinteger
cursorstring

Opaque pagination cursor returned by the previous page.

Headers

x-coderabbitai-api-keystring required

User-scoped organization or workspace API key.

Response

Successfully listed onboarded repositories.

next_cursorstring nullable required

Example response

{
  "repositories": [
    {
      "repository_name": "acme/backend"
    }
  ]
}

Changes