One-call launch screening for launchpads and trading apps: pass a token, get a GREEN / CAU
One-call launch screening for launchpads and trading apps: pass a token, get a GREEN / CAUTION / BLOCK decision (action: allow / review / reject) with plain-English reasons. Combines a live honeypot/tax simulation and owner-power analysis with the checks no other scanner has — whether the DEPLOYER or the exact CODE has rugged before (from a 35k-verdict ledger). Drop it into your listing flow to auto-reject rugs before they ever go live. Cache-first, so a repeat token is near-instant and free.
20000 (raw units)
price
4
calls / 30d
2
unique payers
2026-08-31
updated
Provider
oracle.cyberwarex.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x058D0Cc5CC97e61e8A9f38D6d6365bce525921B2",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"chain": "base"
},
"type": "http"
},
"output": {
"example": {
"action": "reject",
"address": "0x0000000000000000000000000000000000000abc",
"cached": false,
"chain": "base",
"deployer_prior_scams": 22,
"disclaimer": "Automated on-chain screening; evidence-backed, not financial advice.",
"grade": "F",
"is_honeypot": true,
"reasons": [
"Honeypot — buyers cannot sell",
"Deployer has 22 prior PROVEN scam tokens"
],
"template_prior_rugs": 3,
"verdict": "BLOCK"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"address": {
"description": "ERC-20 token contract address to screen.",
"pattern": "^0x[a-fA-F0-9]{40}$",
"type": "string"
},
"chain": {
"default": "base",
"enum": [
"base",
"bsc",
"ethereum",
"polygon",
"arbitrum"
],
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"action": {
"enum": [
"allow",
"review",
"reject"
],
"type": "string"
},
"address": {
"type": "string"
},
"cached": {
"type": "boolean"
},
"chain": {
"type": "string"
},
"deployer_prior_scams": {
"type": "integer"
},
"grade": {
"type": "string"
},
"is_honeypot": {
"type": "boolean"
},
"reasons": {
"items": {
"type": "string"
},
"type": "array"
},
"template_prior_rugs": {
"type": "integer"
},
"verdict": {
"enum": [
"GREEN",
"CAUTION",
"BLOCK"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://oracle.cyberwarex.com/verdict" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://oracle.cyberwarex.com/verdict");
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://oracle.cyberwarex.com/verdict")
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/6829.json, and this resource appears in /discovery/resources and /discovery/search.