Evaluates caller-supplied telemetry samples against declared reaction-time, actions-per-se
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.
4000 (raw units)
price
3
calls / 30d
3
unique payers
2026-09-16
updated
Provider
gaming.halowerk.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "4000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"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"
}
},
"schema": {
"$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"
}
}
}Use it
curl
curl "https://gaming.halowerk.com/v1/anti-cheat-scan" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://gaming.halowerk.com/v1/anti-cheat-scan");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://gaming.halowerk.com/v1/anti-cheat-scan")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/14964.json, and this resource appears in /discovery/resources and /discovery/search.