List Clicked Nodes

GET /api/0/projects/{organization_slug}/{project_id_or_slug}/replays/{replay_id}/clicks/

Retrieve a collection of RRWeb DOM node-ids and the timestamp they were clicked.

Path Parameters

organization_slug (string)
REQUIRED

The slug of the organization the resource belongs to.

project_id_or_slug (string)
REQUIRED

The id or slug of the project the resource belongs to.

replay_id (string)
REQUIRED

The ID of the replay you'd like to retrieve.

Query Parameters:

cursor (string)

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

environment (array(string))

The name of environments to filter by.

per_page (integer)

Limit the number of rows to return in the result. Default and maximum allowed is 100.

query (string)

The search filter for your query, read more about query syntax here.

example: query=(transaction:foo AND release:abc) OR (transaction:[bar,baz] AND release:def)

Scopes

<auth_token> requires one of the following scopes:
  • project:admin
  • project:read
  • project:write
curl https://sentry.io/api/0/projects/{organization_slug}/{project_id_or_slug}/replays/{replay_id}/clicks/ \
 -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
{
  "data": [
    {
      "node_id": 1,
      "timestamp": "2024-02-08T15:52:25+00:00"
    }
  ]
}