Evaluates caller-supplied telemetry samples against declared reaction-time, acti
Evaluates caller-supplied telemetry samples against declared reaction-time, actions-per-second, movement-speed, and impossible-event rules. Flags are review signals only; the service does not identify software, inspect a device, establish intent, or justify an automatic ban.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
885 msmedian answer time
$0.004listed price per call
$0.004price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://gaming.halowerk.com/v1/anti-cheat-scan
| Category | Everything else |
|---|---|
| Provider host | gaming.halowerk.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 4 from 4 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.004 | 885 ms |
Example input (from the provider)
{
"body": {
"maximum_actions_per_second": 20,
"minimum_human_reaction_ms": 80,
"review_rule_count": 2,
"samples": [
{
"actions_per_second": 5,
"impossible_event": false,
"observed_speed": 6.1,
"permitted_speed": 6,
"reaction_ms": 210,
"sample_id": "tick-1"
},
{
"actions_per_second": 45,
"impossible_event": true,
"observed_speed": 9.5,
"permitted_speed": 6,
"reaction_ms": 18,
"sample_id": "tick-2"
}
],
"speed_tolerance_percent": 10
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"maximum_actions_per_second": {
"maximum": 10000,
"minimum": 0,
"type": "number"
},
"minimum_human_reaction_ms": {
"maximum": 1000,
"minimum": 0,
"type": "number"
},
"review_rule_count": {
"maximum": 4,
"minimum": 1,
"type": "integer"
},
"samples": {
"items": {
"additionalProperties": false,
"properties": {
"actions_per_second": {
"maximum": 10000,
"minimum": 0,
"type": "number"
},
"impossible_event": {
"type": "boolean"
},
"observed_speed": {
"maximum": 1000000000,
"minimum": 0,
"type": "number"
},
"permitted_speed": {
"maximum": 1000000000,
"minimum": 0,
"type": "number"
},
"reaction_ms": {
"maximum": 600000,
"minimum": 0,
"type": "number"
},
"sample_id": {
"maxLength": 128,
"minLength": 1,
"type": "string"
}
},
"required": [
"sample_id",
"reaction_ms",
"actions_per_second",
"observed_speed",
"permitted_speed",
"impossible_event"
],
"type": "object"
},
"maxItems": 50000,
"minItems": 1,
"type": "array"
},
"speed_tolerance_percent": {
"maximum": 1000,
"minimum": 0,
"type": "number"
}
},
"required": [
"samples",
"minimum_human_reaction_ms",
"maximum_actions_per_second",
"speed_tolerance_percent",
"review_rule_count"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}