curl --request GET \
--url https://data-api.b3.fun/insights/v1/tokens
{
"data": [
{
"chain_id": 1,
"token_address": "vitalik.eth",
"balance": "<string>",
"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 tokens
curl --request GET \
--url https://data-api.b3.fun/insights/v1/tokens
{
"data": [
{
"chain_id": 1,
"token_address": "vitalik.eth",
"balance": "<string>",
"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>"
}
}
]
}
Successful response
The response is of type object
.