curl --request GET \
--url https://data-api.b3.fun/insights/v1/tokens/transfers/{contract_address}
{
"data": [
{
"block_number": "<string>",
"block_hash": "<string>",
"block_timestamp": "<string>",
"transaction_hash": "<string>",
"from_address": "<string>",
"to_address": "<string>",
"log_index": 123,
"contract_address": "<string>",
"transfer_type": "mint",
"token_type": "erc20",
"amount": "<string>",
"chain_id": 123,
"token_metadata": {
"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>"
}
},
"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>"
}
}
],
"aggregations": "<any>",
"meta": {
"chain_id": 123,
"address": "<string>",
"signature": "<string>",
"page": 123,
"limit": 123,
"total_items": 123,
"total_pages": 123
}
}
Get token transfers by contract
curl --request GET \
--url https://data-api.b3.fun/insights/v1/tokens/transfers/{contract_address}
{
"data": [
{
"block_number": "<string>",
"block_hash": "<string>",
"block_timestamp": "<string>",
"transaction_hash": "<string>",
"from_address": "<string>",
"to_address": "<string>",
"log_index": 123,
"contract_address": "<string>",
"transfer_type": "mint",
"token_type": "erc20",
"amount": "<string>",
"chain_id": 123,
"token_metadata": {
"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>"
}
},
"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>"
}
}
],
"aggregations": "<any>",
"meta": {
"chain_id": 123,
"address": "<string>",
"signature": "<string>",
"page": 123,
"limit": 123,
"total_items": 123,
"total_pages": 123
}
}
Success
The response is of type object
.