Token Screener
Discover and screen tokens across multiple blockchains with advanced filtering capabilities. This endpoint helps identify trending tokens, new launches, and smart money movements by combining metrics like volume, liquidity, market cap, and trading activity.
What it helps to answer:
Which tokens are experiencing significant smart money activity across different chains?
How do market metrics (price, volume, liquidity) correlate with holder behavior and smart money movements?
What tokens show strong fundamentals in terms of holder distribution and trading patterns?
Which emerging tokens are attracting fresh wallet inflows while maintaining healthy smart money participation?
API key for authentication
Request model for Token Screener endpoint.
Additional filters to apply
{"only_smart_money":true,"token_age_days":{"max":365,"min":1}}Custom sort order to override the endpoint's default ordering.
Examples:
- [{"field": "buy_volume", "direction": "DESC"}] - Sort by buy volume descending
- [{"field": "price_change", "direction": "DESC"}] - Sort by price change descending
Token screening data
Bad Request
Unauthorized
Forbidden
Not Found
Unprocessable Entity
Too Many Requests
Internal Server Error
POST /api/v1/token-screener HTTP/1.1
Host: api.nansen.ai
apiKey: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 266
{
"chains": [
"ethereum",
"solana",
"base"
],
"date": {
"from": "2025-01-01T00:00:00Z",
"to": "2025-01-31T23:59:59Z"
},
"pagination": {
"page": 1,
"per_page": 10
},
"filters": {
"only_smart_money": true,
"token_age_days": {
"max": 365,
"min": 1
}
},
"order_by": [
{
"field": "chain",
"direction": "ASC"
}
]
}{
"data": [
{
"chain": "text",
"token_address": "text",
"token_symbol": "text",
"token_age_days": 1,
"market_cap_usd": 1,
"liquidity": 1,
"price_usd": 1,
"price_change": 1,
"fdv": 1,
"fdv_mc_ratio": 1,
"buy_volume": 1,
"inflow_fdv_ratio": 1,
"outflow_fdv_ratio": 1,
"sell_volume": 1,
"volume": 1,
"netflow": 1
}
],
"pagination": {
"page": 1,
"per_page": 10,
"is_last_page": true
}
}Last updated
Was this helpful?