List Cheat Bans
curl --request GET \
--url https://api.sentineltrustplay.io/v1/device/{device_id}/bans/cheat \
--header 'Authorization: <authorization>' \
--header 'X-Game-Id: <x-game-id>'import requests
url = "https://api.sentineltrustplay.io/v1/device/{device_id}/bans/cheat"
headers = {
"Authorization": "<authorization>",
"X-Game-Id": "<x-game-id>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {Authorization: '<authorization>', 'X-Game-Id': '<x-game-id>'}
};
fetch('https://api.sentineltrustplay.io/v1/device/{device_id}/bans/cheat', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.sentineltrustplay.io/v1/device/{device_id}/bans/cheat",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>",
"X-Game-Id: <x-game-id>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.sentineltrustplay.io/v1/device/{device_id}/bans/cheat"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
req.Header.Add("X-Game-Id", "<x-game-id>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.sentineltrustplay.io/v1/device/{device_id}/bans/cheat")
.header("Authorization", "<authorization>")
.header("X-Game-Id", "<x-game-id>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sentineltrustplay.io/v1/device/{device_id}/bans/cheat")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
request["X-Game-Id"] = '<x-game-id>'
response = http.request(request)
puts response.read_body{
"device_id": "dvc_abc123",
"status": "active",
"counts": {
"active": 2,
"inactive": 1,
"total": 3
},
"items": [
{
"ban_id": 3,
"ban_type": "cheat",
"scope": "game",
"publisher_id": "pub_acme",
"game_id": "game_fps_01",
"reason_code": "aimbot",
"details_json": "{\"confidence\": 0.95}",
"created_at": "2025-06-15T10:30:00Z",
"expires_at": null,
"revoked_at": null
}
]
}
Bans
List Cheat Bans
List cheat bans for a device with pagination and status filtering.
GET
/
v1
/
device
/
{device_id}
/
bans
/
cheat
List Cheat Bans
curl --request GET \
--url https://api.sentineltrustplay.io/v1/device/{device_id}/bans/cheat \
--header 'Authorization: <authorization>' \
--header 'X-Game-Id: <x-game-id>'import requests
url = "https://api.sentineltrustplay.io/v1/device/{device_id}/bans/cheat"
headers = {
"Authorization": "<authorization>",
"X-Game-Id": "<x-game-id>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {Authorization: '<authorization>', 'X-Game-Id': '<x-game-id>'}
};
fetch('https://api.sentineltrustplay.io/v1/device/{device_id}/bans/cheat', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.sentineltrustplay.io/v1/device/{device_id}/bans/cheat",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>",
"X-Game-Id: <x-game-id>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.sentineltrustplay.io/v1/device/{device_id}/bans/cheat"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
req.Header.Add("X-Game-Id", "<x-game-id>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.sentineltrustplay.io/v1/device/{device_id}/bans/cheat")
.header("Authorization", "<authorization>")
.header("X-Game-Id", "<x-game-id>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sentineltrustplay.io/v1/device/{device_id}/bans/cheat")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
request["X-Game-Id"] = '<x-game-id>'
response = http.request(request)
puts response.read_body{
"device_id": "dvc_abc123",
"status": "active",
"counts": {
"active": 2,
"inactive": 1,
"total": 3
},
"items": [
{
"ban_id": 3,
"ban_type": "cheat",
"scope": "game",
"publisher_id": "pub_acme",
"game_id": "game_fps_01",
"reason_code": "aimbot",
"details_json": "{\"confidence\": 0.95}",
"created_at": "2025-06-15T10:30:00Z",
"expires_at": null,
"revoked_at": null
}
]
}
string
required
API key as Bearer token:
Bearer sni_<your-key>. Sent by client.string
required
Game identifier. Sent by client.
string
required
The device ID to list bans for.
string
default:"active"
Filter by ban status:
active, inactive, or all.integer
default:50
Maximum number of bans to return (1–200).
integer
Ban ID cursor for keyset pagination. Returns bans with
ban_id < cursor.{
"device_id": "dvc_abc123",
"status": "active",
"counts": {
"active": 2,
"inactive": 1,
"total": 3
},
"items": [
{
"ban_id": 3,
"ban_type": "cheat",
"scope": "game",
"publisher_id": "pub_acme",
"game_id": "game_fps_01",
"reason_code": "aimbot",
"details_json": "{\"confidence\": 0.95}",
"created_at": "2025-06-15T10:30:00Z",
"expires_at": null,
"revoked_at": null
}
]
}
