List a Tag's Values

Return a list of values associated with this key. The <code>query</code> parameter can be used to to perform a "contains" match on 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 the following scopes:
  • project:read
GET /api/0/projects/{organization_slug}/{project_slug}/tags/{key}/values/
curl https://sentry.io/api/0/projects/{organization_slug}/{project_slug}/tags/{key}/values/ \
 -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
[
  {
    "name": "mint_choco"
  }
]