get https://api.nansen.ai/v1/exchange/flows
Tracks and displays the flow of assets into and out of an exchange.
Query Parameters
Name | Type | Required |
---|---|---|
exchange_slug | string | Yes |
start_date | date | Yes |
end_date | date | Yes |
Response
Tracks and displays the flow of assets into and out of an exchange.
Query Parameters
Name | Type | Required |
---|---|---|
exchange_slug | string | Yes |
start_date | date | Yes |
end_date | date | Yes |
xxxxxxxxxx
curl --request GET \
--url https://api.nansen.ai/v1/exchange/flows \
--header 'accept: application/json'
xxxxxxxxxx
14{
"exchange_slug": "Coinbase",
"entity": "Coinbase",
"token_flows": [
{
"block_timestamp": "2024-03-18T13:55:23.000Z",
"counterparty": "Circle",
"token_symbol": "USDC",
"token_address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"value_sent": 10000000,
"value_received": 500000
}
]
}