Fetch Recording Segment
GET /api/0/projects/{organization_slug}/{project_slug}/replays/{replay_id}/recording-segments/{segment_id}/
Return a replay recording segment.
Path Parameters
organization_slug
(string)REQUIREDThe slug of the organization the resource belongs to.
project_slug
(string)REQUIREDThe slug of the project the resource belongs to.
replay_id
(string)REQUIREDThe ID of the replay you'd like to retrieve.
segment_id
(integer)REQUIREDThe ID of the segment you'd like to retrieve.
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires one of the following scopes:project:admin
project:read
project:write
curl https://sentry.io/api/0/projects/{organization_slug}/{project_slug}/replays/{replay_id}/recording-segments/{segment_id}/ \ -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
}
}
}
}
}
]