Hot Contracts
This model provides information about USD flow into/out of contracts. It is used to identify the most active contracts in the network.
Questions
What is the total value locked (TVL) in newly deployed Ethereum contracts over the past year, and how has it changed day-by-day? 2. Which contracts have the highest volume of token inflow and outflow in the last 7 days, and how does it compare to the previous week? 3. What are the common characteristics of contracts with the highest economic activity, based on token transfer values?
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/hot-contracts HTTP/1.1
Host: api.nansen.ai
apiKey: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 195
{
"parameters": {
"chain": "ethereum",
"timeRange": {
"from": "2025-05-01",
"to": "2025-05-03"
},
"isInflow": true,
"onlySmartMoney": true,
"labels": [
"Smart Money"
]
},
"pagination": {
"page": 1,
"recordsPerPage": 100
}
}
[
{
"address": "text",
"addressLabel": "text",
"flow": "text",
"prevFlow": "text",
"flowChangePct": "text",
"wallets": "text",
"smartWallets": "text",
"type": "text",
"entity": "text",
"totalValue": "text",
"prevTotalValue": "text",
"totalValueChangePct": "text"
}
]
Last updated
Was this helpful?