List a Tag's Values

GET /api/0/projects/{organization_slug}/{project_slug}/tags/{key}/values/

Return a list of values associated with this key. The query parameter can be used to to perform a "contains" match on values.

When paginated can return at most 1000 values.

Path Parameters

organization_slug (string)
REQUIRED

The slug of the organization.

project_slug (string)
REQUIRED

The slug of the project.

key (string)
REQUIRED

The tag key to look up.

Scopes

<auth_token> requires one of the following scopes:
  • project:read
curl https://sentry.io/api/0/projects/{organization_slug}/{project_slug}/tags/{key}/values/ \
 -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
[
  {
    "name": "mint_choco"
  }
]