Contract-level risk scan for any EVM token: is the source verified, is it an upgradeable p
Contract-level risk scan for any EVM token: is the source verified, is it an upgradeable proxy and who is its admin, who owns it and has ownership been renounced, and which dangerous powers the bytecode exposes (mint, pause, blacklist, fee-setting). Returns the raw on-chain evidence, not just a score, so an agent can justify the decision it makes.
20000 (raw units)
price
33
calls / 30d
1
unique payers
2026-09-18
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": {
"address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"as_of_block": 24118907,
"chain": "base",
"is_contract": true,
"ownership": {
"has_owner_fn": true,
"owner": "0x2C2f5F0d2F1E1a1E9e3aD9d6C0aB2C0d6d5eF1a2",
"owner_is_contract": false,
"renounced": false
},
"powers": {
"can_blacklist": true,
"can_mint": true,
"can_pause": true,
"can_set_fees": false
},
"powers_caveat": "bytecode-selector scan",
"proxy": {
"admin": "0x2C2f5F0d2F1E1a1E9e3aD9d6C0aB2C0d6d5eF1a2",
"implementation": "0x2Ce6311ddAE708829bc0784C967b7d77D19FD779",
"is_proxy": true,
"standard": "EIP-1967"
},
"token": {
"decimals": 6,
"name": "USD Coin",
"symbol": "USDC"
},
"verified": 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": "Contract address to analyse.",
"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",
"robinhood"
],
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"address": {
"type": "string"
},
"as_of_block": {
"type": "integer"
},
"chain": {
"type": "string"
},
"is_contract": {
"type": "boolean"
},
"ownership": {
"type": "object"
},
"powers": {
"description": "can_mint, can_pause, can_blacklist, can_set_fees.",
"type": "object"
},
"powers_caveat": {
"type": "string"
},
"proxy": {
"description": "Upgradeable-proxy detection: standard, implementation, admin.",
"type": "object"
},
"token": {
"type": "object"
},
"verified": {
"type": "boolean"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://oracle.cyberwarex.com/contract" # -> 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/contract");
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/contract")
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/6827.json, and this resource appears in /discovery/resources and /discovery/search.