v1
latestOpenAPI 3.0.42026-07-26159287356.1 KBOnchain
Get token metadata
Fetch metadata for a specific token including price, market data, and basic information. Data is fetched from onchain-indexer with fallback to third-party providers.
get/v2/onchain/token/metadata
Query parameters
network'ethereum' | 'optimism' | 'base' | 'arbitrum' | 'robinhood' required
A blockchain network e.g. "ethereum", "optimism", "base", "arbitrum", "robinhood"
addressstring required
Example:0x5a927ac639636e534b678e81768ca19e2c6280b7
Token contract address
Response
Success
Example response
{
"token": {
"address": "0x5a927ac639636e534b678e81768ca19e2c6280b7",
"decimals": 6,
"description": "USDC is a fully collateralized US dollar stablecoin",
"fdv": "25000000000",
"holder_count": 1500000,
"image_url": "https://example.com/token.png",
"liquidity": "500000000",
"market_cap": "25000000000",
"name": "USD Coin",
"price_change_24h_pct": -1.2,
"price_change_6h_pct": 0.5,
"price_source": "onchain",
"price_updated_at": 1707177600000,
"price_usd": "1.00",
"symbol": "USDC",
"total_supply": "1000000000000",
"volume_24h": "150000000",
"volume_6h": "50000000"
}
}