API Documentation
Account
Lists
Face Match
Types
Session
Get Session
Session
Get Session
Returns detailed information about a specific session
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>",
"screen_height": 123,
"screen_width": 123
},
"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
Path Parameters
ID of the session to retrieve
Response
200
application/json
Session information response
The response is of type object
.
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>",
"screen_height": 123,
"screen_width": 123
},
"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
}
}