GET
/
insights
/
v1
/
tokens
/
lookup
Token lookup
curl --request GET \
  --url https://data-api.b3.fun/insights/v1/tokens/lookup
{
  "data": [
    {
      "chain_id": 1,
      "token_address": "vitalik.eth",
      "name": "<string>",
      "symbol": "<string>",
      "decimals": 123,
      "price_data": {
        "price_usd": 123,
        "usd_value": 123,
        "volume_24h_usd": 123,
        "market_cap_usd": 123,
        "circulating_supply": 123,
        "total_supply": 123,
        "percent_change_24h": 123,
        "price_timestamp": "<string>"
      }
    }
  ]
}

Query Parameters

symbol
required

The symbol(s) of the token to lookup. You can specify multiple symbols, up to a maximum of 10. Use repeated query parameters, e.g., ?symbol=ETH&symbol=USDC.

Maximum length: 10
Example:
["ETH", "USDC"]
chain
number[]
deprecated

Use chain_id instead

Example:
[20, 56, 1]
chain_id
number[]

The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 55. Use repeated query parameters, e.g., ?chain_id=20&chain_id=56. Optional, because a single chain can as well be specified as a subdomain

Example:
[20, 56, 1]

Response

200
application/json

Successful response

The response is of type object.