GET
/
v0.0
/
sessions
/
{sessionId}
/
report
curl --request GET \
  --url https://api.roundtable.ai/v0.0/sessions/{sessionId}/report \
  --header 'Authorization: Bearer <token>'
{
  "session_id": "abc123def456",
  "user_id": "user-456",
  "user_logs": [
    {
      "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
    }
  ],
  "failed_checks": [
    {
      "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
    }
  ],
  "session_replay": {
    "url": "https://app.roundtable.ai/replay/abc123def456",
    "duration_seconds": 142
  }
}

Authorizations

Authorization
string
header
required

Use your private API key as the bearer token

Path Parameters

sessionId
string
required

The unique session identifier (found in session storage as rtSessionId)

Response

200 - application/json
Session data retrieved successfully
session_id
string

Unique identifier for the session

Example:

"abc123def456"

user_id
string

User identifier provided during script initialization (if any)

Example:

"user-456"

user_logs
object[]

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
  }
]
failed_checks
object[]

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
  }
]
session_replay
object

Information about the session replay recording