Events by recordingId
GET
/recordings/{recordingId}/events
Get recording events corresponding to one recordingId from rrweb cloud.
Authorizations
Private API Key
Private API Key
Bearer token for authentication. Use your private API key as the token.
or
Presigned URL
Presigned URL
Use a presigned URL generated by the List Recordings endpoint with includeSignedUrls=true. Time-constrained and scoped to a single recording, so it can be exposed publicly in your replayer.
Show parameters: KeyId, Expires, Signature
KeyId
The name/label of the signing key configured in your rrweb cloud account. e.g. "key-2024-12"
Expires
Expiration timestamp (UNIX seconds)
Signature
SHA256 over the constructed string "GET /recordings/{recordingId} {tenantId} {expires}". Please get in contact if you need to calculate this manually.
Parameters
Path Parameters
recordingId*
The recording ID
Type
Requiredstring
Example
"000e8400-e00b-00d0-a716-446655440000"Format
"uuid"Responses
Successfully retrieved recording events
application/json
JSON
[
{
"type": 4,
"timestamp": 1234567890,
"data": {
"additionalProperties": "string"
},
"originalTimestamp": 0
}
]