Dozor
Sessions

Stream rrweb events as gzip-compressed batches

VIEWER+. Returns every `EventBatch` row for the session, ordered by `firstTimestamp`. The client decompresses each `data` (base64 + gzip), concatenates the events, and feeds them to rrweb.Replayer.

GET/api/sessions/{sessionId}/events

VIEWER+. Returns every EventBatch row for the session, ordered by firstTimestamp. The client decompresses each data (base64 + gzip), concatenates the events, and feeds them to rrweb.Replayer.

Path Parameters

sessionId*string

Session id (cuid)

Response Body

application/json

curl -X GET "https://loading/api/sessions/string/events"
{
  "batches": [
    {
      "id": "ebt_111",
      "firstTimestamp": 1761480000000,
      "lastTimestamp": 1761480060000,
      "eventCount": 250,
      "data": "<base64-gzip>"
    }
  ],
  "nextCursor": null
}
Empty
Empty
Empty