Catalog/finance-token-info

Finance

Token info by contract API

Name, symbol, price, market cap, volume, and links for a token by its contract address (CoinGecko). Answers 'what token is this contract', 'price and market cap of this token', 'token details by address'.

Price$0.01per request
MethodPOST
Route/v1/finance/token-info
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache300s public
financecryptotokencontractmarket-capcoingecko
API URLhttps://x402.hexl.dev/v1/finance/token-info
Integration docs
Example request
{
  "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F",
  "chain": "ethereum"
}
Example response
{
  "name": "Dai",
  "symbol": "DAI",
  "address": "0x6b175474e89094c44da98b954eedeac495271d0f",
  "chain": "ethereum",
  "priceUsd": 1,
  "marketCapUsd": 5000000000,
  "volume24hUsd": 200000000,
  "change24hPct": 0.01,
  "homepage": "https://makerdao.com",
  "twitter": "https://twitter.com/MakerDAO"
}
Input schema
{
  "type": "object",
  "required": [
    "address"
  ],
  "properties": {
    "address": {
      "type": "string",
      "pattern": "^0x[0-9a-fA-F]{40}$"
    },
    "chain": {
      "type": "string",
      "enum": [
        "ethereum",
        "base",
        "polygon",
        "arbitrum",
        "optimism"
      ],
      "default": "ethereum"
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}