Developer Resources
Getting Session Data
Get detailed user actions, failed checks, and session replay link for a specific session ID
GET
Authorizations
Use your private API key as the bearer token
Path Parameters
The unique session identifier (found in session storage as rtSessionId)
Response
200 - application/json
Session data retrieved successfully
Unique identifier for the session
Example:
"abc123def456"
User identifier provided during script initialization (if any)
Example:
"user-456"
Chronological list of user actions recorded during the session
Example:
[
{
"action": "Signed in",
"user_time": "Mar 25, 2025 14:30:45",
"timestamp": 1743055845000
},
{
"action": "Navigated to /dashboard",
"user_time": "Mar 25, 2025 14:30:50",
"timestamp": 1743055850000
},
{
"action": "Updated credit card",
"user_time": "Mar 25, 2025 14:32:15",
"timestamp": 1743055935000
}
]
List of behavioral anomalies detected during the session
Example:
[
{
"check": "Unnatural mouse movement",
"user_time": "Mar 25, 2025 14:31:05",
"timestamp": 1743055865000
},
{
"check": "Suspicious copy-paste activity",
"user_time": "Mar 25, 2025 14:31:30",
"timestamp": 1743055890000
}
]
Information about the session replay recording