$0.004
per call · USD Coin on Base
ERC-20 token profile on any major EVM chain: on-chain metadata (name, symbol, decimals, total supply) read straight from the contract, joined with live DEX market data (USD price, liquidity, 24h volume, 24h change, and the top trading pair with its DEX). Use it to price a token, check liquidity depth before a swap, or resolve an unknown contract address into a real token.
Endpoint
GET https://chain.cyberwarex.com/token18
Calls / 30d
1
Unique payers / 30d
Sep 10
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://chain.cyberwarex.com/token", {
method: "GET",
});
const data = await res.json();curl -X GET \
"https://chain.cyberwarex.com/token?address=0x4200000000000000000000000000000000000006&chain=base" \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"address": "0x4200000000000000000000000000000000000006",
"chain": "base",
"decimals": 18,
"market": {
"change_24h_pct": -1.87,
"liquidity_usd": 41283910.5,
"source": "dexscreener",
"top_pair": {
"base": "WETH",
"chain": "base",
"dex": "aerodrome",
"quote": "USDC"
},
"usd": 3194.51,
"volume_24h_usd": 88214003.1
},
"name": "Wrapped Ether",
"symbol": "WETH",
"total_supply": 121843.512,
"total_supply_raw": "121843512000000000000000"
}Payment details
0x058d0cc5cc97e61e8a9f38d6d6365bce525921b2USD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of Onchain Data and the homepage with a featured placement.
More from Onchain Query API & similar services
Onchain Query API · ENS
chain.cyberwarex.com
ENS name resolution in both directions on Ethereum mainnet. Pass name to resolve an ENS name to its address (forward), or pass address to get that address's primary ENS name (reverse, forward-verified so spoofed reverse records are rejected). Read straight from the ENS registry. Use it to turn vitalik.eth into an address, or to label a raw address with a human-readable name.
Onchain Query API · Price
chain.cyberwarex.com
Spot USD price for any crypto asset. Accepts a ticker symbol (eth, btc, sol), a CoinGecko id (ethereum), or an EVM token contract address. Returns the USD price plus 24h change, with market cap for listed assets, or liquidity, 24h volume and the top DEX pair for contract addresses. Cached 60 seconds so repeated calls in one agent workflow stay consistent with each other.
Onchain Query API · TX
chain.cyberwarex.com
Transaction lookup and decode on any major EVM chain. Turns a raw tx hash into agent-readable facts: success or failure status, block number, sender and recipient, native value transferred, gas used, fee in native token and USD, and every ERC-20 transfer decoded with token symbol, decimals and human-readable amount. Returns found=false for an unknown hash instead of erroring.