GET
/
session
/
{session_id}
curl --request GET \
  --url https://api.sandbox.verisoul.ai/session/{session_id} \
  --header 'x-api-key: <api-key>'
{
  "account_ids": [
    "<string>"
  ],
  "request_id": "<string>",
  "project_id": "<string>",
  "session_id": "<string>",
  "start_time": "2023-11-07T05:31:56Z",
  "true_country_code": "<string>",
  "network": {
    "ip_address": "<string>",
    "service_provider": "<string>",
    "connection_type": "<string>"
  },
  "location": {
    "continent": "<string>",
    "country_code": "<string>",
    "state": "<string>",
    "city": "<string>",
    "zip_code": "<string>",
    "timezone": "<string>",
    "latitude": 123,
    "longitude": 123
  },
  "browser": {
    "type": "<string>",
    "version": "<string>",
    "language": "<string>",
    "user_agent": "<string>",
    "timezone": "<string>"
  },
  "device": {
    "category": "<string>",
    "type": "<string>",
    "os": "<string>",
    "cpu_cores": 123,
    "memory": 123,
    "gpu": "<string>"
  },
  "bot": {
    "mouse_num_events": 123,
    "click_num_events": 123,
    "keyboard_num_events": 123,
    "touch_num_events": 123,
    "clipboard_num_events": 123
  },
  "risk_signals": {
    "device_risk": true,
    "proxy": true,
    "vpn": true,
    "tor": true,
    "spoofed_ip": true,
    "datacenter": true,
    "recent_fraud_ip": true,
    "impossible_travel": true,
    "device_network_mismatch": true
  },
  "risk_signal_scores": {
    "device_risk": 123,
    "proxy": 123,
    "vpn": 123,
    "tor": 123,
    "datacenter": 123,
    "recent_fraud_ip": 123,
    "impossible_travel": 123,
    "device_network_mismatch": 123
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

session_id
string
required

ID of the session to retrieve

Response

200
application/json
Session information response
account_ids
string[]

List of account IDs associated with this session

request_id
string

The ID of the request

project_id
string

The ID of the project

session_id
string

The ID of the session

start_time
string

Timestamp when the session started

true_country_code
string

The true country code of the session

network
object
location
object
browser
object
device
object
bot
object
risk_signals
object
risk_signal_scores
object