ERC-20 token profile on any major EVM chain: on-chain metadata (name, symbol, decimals, to
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.
4000 (raw units)
price
27
calls / 30d
1
unique payers
2026-09-18
updated
Provider
chain.cyberwarex.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x058D0Cc5CC97e61e8A9f38D6d6365bce525921B2",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "4000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"address": "0x4200000000000000000000000000000000000006",
"chain": "base"
},
"type": "http"
},
"output": {
"example": {
"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"
},
"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 query.",
"enum": [
"base",
"ethereum",
"arbitrum",
"optimism",
"polygon"
],
"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"
},
"decimals": {
"type": "integer"
},
"market": {
"description": "Live DEX market data, or {note} when no DEX pair exists.",
"type": "object"
},
"name": {
"type": "string"
},
"symbol": {
"type": "string"
},
"total_supply": {
"type": [
"number",
"null"
]
},
"total_supply_raw": {
"type": [
"string",
"null"
]
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://chain.cyberwarex.com/token" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://chain.cyberwarex.com/token");
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://chain.cyberwarex.com/token")
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/6850.json, and this resource appears in /discovery/resources and /discovery/search.