List Recording Segments

GET /api/0/projects/{organization_slug}/{project_id_or_slug}/replays/{replay_id}/recording-segments/

Return a collection of replay recording segments.

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.

per_page (integer)

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

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}/recording-segments/ \
 -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
[
  [
    {
      "type": 5,
      "timestamp": 1658770772.902,
      "data": {
        "tag": "performanceSpan",
        "payload": {
          "op": "memory",
          "description": "",
          "startTimestamp": 1658770772.902,
          "endTimestamp": 1658770772.902,
          "data": {
            "memory": {
              "jsHeapSizeLimit": 4294705152,
              "totalJSHeapSize": 10204109,
              "usedJSHeapSize": 9131621
            }
          }
        }
      }
    }
  ],
  [
    {
      "type": 5,
      "timestamp": 1665063926.125,
      "data": {
        "tag": "performanceSpan",
        "payload": {
          "op": "navigation.navigate",
          "description": "https://sentry.io",
          "startTimestamp": 1665063926.125,
          "endTimestamp": 1665063926.833,
          "data": {
            "size": 9538,
            "duration": 710
          }
        }
      }
    }
  ]
]