Retrieve Tag Details

GET /api/0/organizations/{organization_slug}/issues/{issue_id}/tags/{key}/

Returns details for given tag key related to an issue.

Path Parameters

organization_slug (string)
REQUIRED

The slug of the organization the issue belongs to.

issue_id (string)
REQUIRED

The ID of the issue to retrieve.

key (string)
REQUIRED

The tag key to look the values up for.

Scopes

<auth_token> requires one of the following scopes:
  • event:read
curl https://sentry.io/api/0/organizations/{organization_slug}/issues/{issue_id}/tags/{key}/ \
 -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
{
  "key": "ice_cream",
  "totalValues": 6
}