POST
/
session
/
unauthenticated
curl --request POST \
  --url https://api.sandbox.verisoul.ai/session/unauthenticated \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "session_id": "<string>"
}'
{
  "project_id": "<string>",
  "session_id": "<string>",
  "request_id": "<string>",
  "decision": "<string>",
  "account_score": 123,
  "bot": 123,
  "multiple_accounts": 123,
  "risk_signals": 123,
  "accounts_linked": 123,
  "lists": [
    "<string>"
  ],
  "session": {
    "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
    }
  },
  "linked_accounts": [
    {
      "account_id": "<string>",
      "score": 123,
      "email": "<string>",
      "match_type": [
        "<string>"
      ],
      "lists": [
        "<string>"
      ],
      "metadata": {}
    }
  ]
}

Authorizations

x-api-key
string
header
required

Query Parameters

accounts_linked
boolean

Whether to include linked accounts in the response

Body

application/json
Session information
session_id
string
required

The ID of the session to evaluate

Response

200
application/json
Session evaluation response
project_id
string

The ID of the project

session_id
string

The ID of the session

request_id
string

The ID of the request

decision
string

Decision about the authenticity (Real/Fake)

account_score
number

Overall account risk score

bot
number

Bot detection score

multiple_accounts
number

Multiple accounts detection score

risk_signals
number

Risk signals score

accounts_linked
integer

Number of accounts linked to this session

lists
string[]

Lists the session belongs to

session
object
linked_accounts
object[]

List of accounts linked to this session (only included when accounts_linked=true)