Use case 1: Automated Token Tracking & Smart Money Analysis
Last updated
Was this helpful?
Was this helpful?
curl -X POST "https://api.nansen.ai/api/v1/token-screener" \
-H "apikey: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"chains": ["ethereum", "solana"],
"date": {
"from": "2026-07-12T00:00:00Z",
"to": "2026-07-13T23:59:59Z"
},
"pagination": {
"page": 1,
"per_page": 50
},
"filters": {
"market_cap_usd": {
"min": 1000000,
"max": 100000000
},
"liquidity": {
"min": 500000
},
"nof_traders": {
"min": 100
},
"only_smart_money": true,
"token_age_days": {
"min": 1,
"max": 30
}
},
"order_by": [
{
"field": "volume",
"direction": "DESC"
}
]
}'curl -L \
--request POST \
--url 'https://api.nansen.ai/api/v1/smart-money/netflow' \
--header 'apikey: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"chains": [
"ethereum",
"solana"
],
"filters": {
"include_smart_money_labels": [
"Fund",
"Smart Trader",
"30D Smart Trader"
],
"market_cap_usd": {
"min": 1000000
},
"trader_count": {
"min": 5
}
},
"pagination": {
"page": 1,
"per_page": 10
},
"order_by": [
{
"field": "net_flow_7d_usd",
"direction": "DESC"
}
]
}'
curl -L \
--request POST \
--url 'https://api.nansen.ai/api/v1/tgm/pnl-leaderboard' \
--header 'apikey: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"chain": "ethereum",
"token_address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"date": {
"from": "2026-04-14",
"to": "2026-07-13"
},
"pagination": {
"page": 1,
"per_page": 100
},
"filters": {
"holding_usd": {
"min": 1000
},
"pnl_usd_realised": {
"min": 1000
}
}
}'