session_record_events
Fetch a recording's captured events in order, with pagination for long sessions. Returns browser events (click, scroll, keypress, input, navigation, focus, select, resize) for analysis or replay.
Instructions
Fetch the captured events of a recording, in the order they happened. Returns {events, count}, where count is the total held for the session and events is one page of {type, timestamp, tabId, data}; type is one of click, scroll, keypress, input, navigation, focus, select or resize. Page through long recordings with limit and offset rather than reading them whole, since a session can hold tens of thousands of events. Requires the T3rnel Browser extension.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum events to return in this page (default 100) | |
| offset | No | Number of events to skip, for paging through a long recording (default 0) | |
| sessionId | Yes | Recording session to read, from session_record_list |