One HTTP call returns a buy-then-sell simulation against real DEX liquidity, the sell tax in basis points, the contract's dangerous privileges, and an A–F grade with the evidence behind it. No signup, no API key, no SDK.
# Free. No key. Works from your terminal this second. curl -H "X-Free-Trial: 1" \ "https://oracle.cyberwarex.com/honeypot?address=0x9c4fA3ed5f8a289D7Be39372dF091bEF47EAf29c&chain=base"
// a known honeypot -> caught { "is_honeypot": true, "grade": "F", "tradeable": false, "buy_success": true, "sell_success": false, "reason_codes": ["SELL_REVERTS"] }
# and a blue chip -> clean curl -H "X-Free-Trial: 1" \ "https://oracle.cyberwarex.com/token?address=0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913&chain=base" // { "grade": "A", "is_honeypot": false, "tradeable": true }
r = requests.get( "https://oracle.cyberwarex.com/v1/risk/check", params={"address": token, "chain": "base"}, headers={"X-Free-Trial": "1"}).json() if r["recommendation"]["action"] != "ALLOW": warn_user(r["recommendation"]["reason_codes"])
const r = await fetch( `https://oracle.cyberwarex.com/v1/risk/check` + `?address=${'${token}'}&chain=base`, { headers: { "X-Free-Trial": "1" } } ).then(r => r.json()); if (r.recommendation.action === "BLOCK") blockTrade(r);
| Field | Meaning |
|---|---|
recommendation.action | ALLOW · LIMIT · RECHECK · BLOCK — the one field to branch on |
is_honeypot | Sell actually reverted in a real simulated trade |
honeypot_probability | 0–100, with a separate confidence score |
grade | A–F overall safety |
privileges | mint · pause · blacklist · upgrade · tax_change |
dynamic_tax.max_sell_bps | The worst sell tax the owner could set, not just today's |
controllers.effective | Who actually holds power over the contract |
liquidity | USD depth and a 0–100 quality score |
recommendation.reason_codes | Machine-readable why, so you can show the user a real reason |
oracle.version | Ruleset stamp, so verdicts are reproducible and auditable |
/screen takes up to 25 tokens in one call. /risk/explain returns a single verdict
built for autonomous agents. There is an MCP server if your stack speaks it.| Endpoint | What | Price |
|---|---|---|
/contract | Contract privileges + ownership | $0.01 |
/honeypot | Buy/sell simulation + tax | $0.02 |
/token | Full report + cross-checks | $0.03 |
/screen | Batch, up to 25 tokens | $0.10 |
Paid per call in USDC on Base via x402 — no invoice, no minimum, no subscription, no signup. High volume? Prepay a USDC balance and we issue you a partner key, so your calls skip the payment handshake entirely. Settlement is USDC only.