Token Transfers
This model returns the top transactions for ERC-20 tokens by value within the specified dates.
Questions
What are the top transactions by value that happened this year for the BLUR token? 2. What was the largest LDO transaction in the past week? 3. Were there transfers of more than 100 million USDC recently?
Authorizations
Body
Responses
200
Successful response
application/json
400
Bad request
application/json
401
Authentication error
application/json
403
Forbidden - Subscription tier required
application/json
500
Internal server error
application/json
post
POST /api/beta/tgm/transfers HTTP/1.1
Host: api.nansen.ai
apiKey: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 250
{
"parameters": {
"chain": "ethereum",
"tokenAddress": "0x6982508145454ce325ddbe47a25d4ec3d2311933",
"date": {
"from": "2025-05-01",
"to": "2025-05-03"
},
"dexIncluded": false,
"cexIncluded": false,
"onlySmartMoney": false
},
"pagination": {
"page": 1,
"recordsPerPage": 100
}
}
[
{
"blockTimestamp": "text",
"transactionHash": "text",
"fromAddress": "text",
"toAddress": "text",
"fromLabel": "text",
"toLabel": "text",
"txType": "text",
"value": "text",
"valueUsd": "text"
}
]
Last updated
Was this helpful?