Rank traders
Leaderboard of traders ranked by pnl, roi, or volume with capital, quality, and style cohort filters.
/networks/{network}/rankings/tradersSupported metrics are pnl, roi, and volume. The period is echoed in the response and defaults to 7d.
Capital cohorts
Filter by capital tags such as shrimp, fish, dolphin, shark, small_whale, whale, tidal_whale, leviathan.
capital
Quality cohorts
Filter by quality tags such as positive_expectancy, consistent_operator, high_quality, exceptional.
quality
Strategy style
Filter by strategy style such as lowDd, stableProfit, hiRiskHiReturn, aggrHiFreq, volatileStrategy.
style
Asset filter
Filter by a traded asset. Unknown assets return 404.
asset=BTC
Network identifier. Only hyperliquid is supported.
Example: hyperliquid
Ranking metric: pnl, roi, or volume.
Example: roi
Look-back period. Accepts Nd format. Default 7d.
Example: 30d
Capital cohort filter. Repeatable.
Example: whale
Quality cohort filter. Repeatable.
Example: high_quality
Strategy style filter. Repeatable.
Example: lowDd
Filter to wallets that have traded a specific asset.
Example: BTC
Maximum results to return.
Example: 25
Responses
200OK
Ranked trader list with key analytics for the requested period.
Ranked traders for the requested metric and period.
1-based rank within the result set.
Wallet address.
Human label if DexHunt has one.
Total account value in USD.
PnL over the period in USD.
Return on investment percentage.
Traded volume over the period in USD.
Resolved look-back period echoed from the request.
Ranking metric used — pnl, roi, or volume.
400Bad Request
401Unauthorized
404Not Found
500Server Error
curl -sS "https://api.dexhunt.app/v1/networks/hyperliquid/rankings/traders?metric=roi&period=30d&quality=high_quality&asset=BTC&limit=3" \
-H "X-API-Key: hlsk_your_developer_key"{
"items": [
{
"rank": 1,
"address": "0x1111111111111111111111111111111111111111",
"label": null,
"accountValue": "12500000.42",
"pnl": "820000.12",
"roi": "7.12",
"volume": "98100000.50"
}
],
"period": "30d",
"metric": "roi"
}