List a Project's Client Keys

GET /api/0/projects/{organization_slug}/{project_slug}/keys/

Return a list of client keys bound to a project.

Path Parameters

organization_slug (string)
REQUIRED

The slug of the organization the client keys belong to.

project_slug (string)
REQUIRED

The slug of the project the client keys belong to.

Query Parameters:

cursor (string)

A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.

Scopes

<auth_token> requires one of the following scopes:
  • project:read
curl https://sentry.io/api/0/projects/{organization_slug}/{project_slug}/keys/ \
 -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
[
  {
    "browserSdk": {
      "choices": [
        [
          "latest",
          "latest"
        ],
        [
          "4.x",
          "4.x"
        ]
      ]
    },
    "browserSdkVersion": "4.x",
    "dateCreated": "2018-11-06T21:20:07.941Z",
    "dsn": {
      "cdn": "https://sentry.io/js-sdk-loader/cec9dfceb0b74c1c9a5e3c135585f364.min.js",
      "csp": "https://sentry.io/api/2/csp-report/?sentry_key=cec9dfceb0b74c1c9a5e3c135585f364",
      "minidump": "https://sentry.io/api/2/minidump/?sentry_key=cec9dfceb0b74c1c9a5e3c135585f364",
      "public": "https://cec9dfceb0b74c1c9a5e3c135585f364@sentry.io/2",
      "secret": "https://cec9dfceb0b74c1c9a5e3c135585f364:4f6a592349e249c5906918393766718d@sentry.io/2",
      "security": "https://sentry.io/api/2/security/?sentry_key=cec9dfceb0b74c1c9a5e3c135585f364"
    },
    "id": "cec9dfceb0b74c1c9a5e3c135585f364",
    "isActive": true,
    "label": "Fabulous Key",
    "name": "Fabulous Key",
    "projectId": 2,
    "public": "cec9dfceb0b74c1c9a5e3c135585f364",
    "rateLimit": null,
    "secret": "4f6a592349e249c5906918393766718d"
  }
]