$0.1
per call · USD Coin on Base
Batch token screen: up to 25 tokens (Base or BSC) assessed in parallel via the same in-process engine as /token. Per-token 20s timeout, runs on a ThreadPoolExecutor (max_workers=8); a token that times out or errors returns {address, error} instead of blocking the batch. Summary + per-token grade/tradeable/is_honeypot/flags.
Endpoint
POST https://oracle.cyberwarex.com/screen1
Calls / 30d
1
Unique payers / 30d
Aug 23
Last called
exact
Payment scheme
Call this service
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";
const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);
const res = await fetchWithPay("https://oracle.cyberwarex.com/screen", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"tokens": [
{
"address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"chain": "base"
}
]
}),
});
const data = await res.json();curl -X POST \
"https://oracle.cyberwarex.com/screen" \
-H "Content-Type: application/json" \
-d '{"tokens":[{"address":"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913","chain":"base"}]}' \
-H "X-PAYMENT: <signed x402 payment>"Payment details
0x058d0cc5cc97e61e8a9f38d6d6365bce525921b2USD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of DeFi and the homepage with a featured placement.
More from DeFi Safety Oracle & similar services
DeFi Safety Oracle · Honeypot
oracle.cyberwarex.com
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.
DeFi Safety Oracle · Contract
oracle.cyberwarex.com
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.
DeFi Safety Oracle · Verdict
oracle.cyberwarex.com
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.