Focused honeypot check: a live buy-then-sell simulation against real DEX liquidity (Aerodr
Focused honeypot check: a live buy-then-sell simulation against real DEX liquidity (Aerodrome, Uniswap V2/V3/V4). Tells an agent whether the token can actually be SOLD, the round-trip loss percent, and whether GoPlus or honeypot.is flag it too. Catches sell-blocking scam tokens, extreme sell taxes and no-liquidity traps before a buy is placed.
40000 (raw units)
price
58
calls / 30d
2
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": "40000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"chain": "base"
},
"type": "http"
},
"output": {
"example": {
"address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"chain": "base",
"cross_check": {
"external_honeypot": false,
"flagged_by": [],
"sources_available": 2
},
"disclaimer": "Live buy/sell simulation plus external cross-check; not financial advice.",
"grade": "A",
"honeypot_flags": [],
"is_honeypot": false,
"simulation": {
"available": true,
"buy_ok": true,
"dex": "Aerodrome",
"error": null,
"is_honeypot": false,
"no_liquidity": false,
"roundtrip_loss_pct": 0.31,
"sell_ok": true
},
"tradeable": 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",
"robinhood"
],
"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"
},
"cross_check": {
"type": "object"
},
"disclaimer": {
"type": "string"
},
"grade": {
"enum": [
"A",
"B",
"C",
"D",
"F"
],
"type": "string"
},
"honeypot_flags": {
"items": {
"type": "object"
},
"type": "array"
},
"is_honeypot": {
"type": "boolean"
},
"simulation": {
"description": "Live buy/sell probe result incl. dex, buy_ok, sell_ok, roundtrip_loss_pct.",
"type": "object"
},
"tradeable": {
"type": "boolean"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://oracle.cyberwarex.com/honeypot" # -> 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/honeypot");
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/honeypot")
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/6828.json, and this resource appears in /discovery/resources and /discovery/search.