Getting Session Data
Get detailed user actions, failed checks, and session replay link for a specific session ID
Authorizations
Use your secret API key as the bearer token
Path Parameters
The unique session identifier (found in session storage as rtSessionId)
Response
Unique identifier for the session
"abc123def456"
User identifier provided during script initialization (if any)
"user-456"
Overall risk score for the session (0-100). Higher scores indicate higher risk.
0 <= x <= 100
75
Short explanation of the factors contributing to the risk score
"User was flagged for multiple likely bot behavior, indicating a medium to high risk of fraud."
Chronological list of user actions recorded during the session
[
{
"action": "Signed in",
"user_time": "Mar 25, 2025 14:30:45",
"unix_timestamp": 1743055845000
},
{
"action": "Navigated to /dashboard",
"user_time": "Mar 25, 2025 14:30:50",
"unix_timestamp": 1743055850000
},
{
"action": "Updated credit card",
"user_time": "Mar 25, 2025 14:32:15",
"unix_timestamp": 1743055935000
}
]
Results of biometric analysis for bot detection
{
"programmatic_typing": "Detected",
"teleporting_mouse": "Not detected",
"no_corrections": "Detected",
"all_pasted": "Unknown"
}
URL to view the session replay (will be null if replay is disabled)
"https://app.roundtable.ai/replay/abc123def456"