Full safety report for an ERC-20 token
Full safety report for an ERC-20 token. Runs a live buy-then-sell honeypot and tax simulation against real DEX liquidity (Aerodrome, Uniswap V2/V3/V4), scans contract powers (upgradeable proxy, mint, pause, blacklist, fee-setting), resolves ownership and effective controllers, and cross-checks GoPlus and honeypot.is. Returns an A-F grade, tradeable flag, 0-100 risk score and evidence-carrying flags an agent can cite.
30000 (raw units)
price
2
calls / 30d
1
unique payers
2026-08-28
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": "30000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"chain": "base"
},
"type": "http"
},
"output": {
"example": {
"address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"chain": "base",
"chain_facts": {
"as_of_block": 24118907,
"is_contract": true,
"verified": true
},
"cross_check": {
"external_honeypot": false,
"flagged_by": [],
"sources_available": 2
},
"disclaimer": "Automated on-chain heuristics; not financial advice.",
"dynamic_tax": {
"tax_changeable": false
},
"flags": [],
"grade": "A",
"is_honeypot": false,
"risk_score": 8,
"simulation": {
"available": true,
"buy_ok": true,
"dex": "Aerodrome",
"is_honeypot": false,
"roundtrip_loss_pct": 0.31,
"sell_ok": true
},
"summary": "Verified issuer contract; buy and sell both simulate cleanly with zero tax.",
"tradeable": true,
"trusted_issuer": true
},
"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.",
"pattern": "^0x[a-fA-F0-9]{40}$",
"type": "string"
},
"chain": {
"default": "base",
"description": "EVM chain to assess the token on.",
"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": {
"address": {
"type": "string"
},
"chain": {
"type": "string"
},
"chain_facts": {
"type": "object"
},
"cross_check": {
"type": "object"
},
"disclaimer": {
"type": "string"
},
"dynamic_tax": {
"type": "object"
},
"flags": {
"description": "Risk flags with id, severity, reason and on-chain evidence.",
"items": {
"type": "object"
},
"type": "array"
},
"grade": {
"enum": [
"A",
"B",
"C",
"D",
"F"
],
"type": "string"
},
"is_honeypot": {
"type": "boolean"
},
"risk_score": {
"type": "integer"
},
"simulation": {
"type": "object"
},
"summary": {
"type": "string"
},
"tradeable": {
"type": "boolean"
},
"trusted_issuer": {
"type": "boolean"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://oracle.cyberwarex.com/token" # -> 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/token");
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/token")
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/6830.json, and this resource appears in /discovery/resources and /discovery/search.