Last updated 3 days ago
Was this helpful?
This endpoint shows the balances of the exchanges that hold the given input token.
param_token_address
FixedString(42)
Token address input
date_from
String
Date range start input, format YYYY-MM-DD
date_to
Date range end input, format YYYY-MM-DD
Object containing all parameters for the endpoint
In this table, we are showing the balances of the exchanges that hold the given input token. We are also showing their balances within the input time frame, defaulting to 7 days ago and now.
POST /api/beta/tgm/exchanges/balances HTTP/1.1 Host: api.nansen.ai Content-Type: application/json Accept: */* Content-Length: 102 { "parameters": { "chain": "ethereum", "tokenAddress": null, "date": { "from": "2025-05-01", "to": "2025-05-03" } } }
Successful response
[ { "exchange": "text", "currentBalance": "text", "balanceChange": "text", "firstReceivedAt": "text" } ]
This endpoint shows exchanges' token inflow and outflow by date.
This query shows exchanges' token inflow and outflow by date.
POST /api/beta/tgm/exchanges/flows HTTP/1.1 Host: api.nansen.ai Content-Type: application/json Accept: */* Content-Length: 85 { "parameters": { "chain": "ethereum", "tokenAddress": null, "dateFrom": null, "dateTo": null } }
[ { "blockDate": "text", "exchangesInflow": "text", "exchangesOutflow": "text", "exchangesNetflow": "text" } ]
List of transactions to & from exchanges involving the given token.
In this table, we are showing the transactions to & from exchanges involving the given input token.
POST /api/beta/tgm/exchanges/transactions HTTP/1.1 Host: api.nansen.ai Content-Type: application/json Accept: */* Content-Length: 162 { "parameters": { "chain": "ethereum", "tokenAddress": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "isWithdrawal": true, "date": { "from": "2025-05-01", "to": "2025-05-03" } } }
[ { "transactionHash": "text", "fromAddress": "text", "fromLabel": "text", "toAddress": "text", "toLabel": "text", "value": "text", "blockTimestamp": "text" } ]