GET
/
insights
/
v1
/
tokens
/
price
Get token price
curl --request GET \
  --url https://data-api.b3.fun/insights/v1/tokens/price
{
  "data": [
    {
      "chain_id": 1,
      "address": "vitalik.eth",
      "symbol": "<string>",
      "price_usd": 123,
      "price_usd_cents": 123,
      "percent_change_24h": 123,
      "volume_24h_usd": 123,
      "volume_change_24h": 123,
      "market_cap_usd": 123,
      "historical_prices": [
        {
          "date": "<string>",
          "price_usd": 123,
          "price_usd_cents": 123
        }
      ],
      "holders": 123
    }
  ]
}

Response

200
application/json

Successful response

The response is of type object.