Smart-money consensus
Aggregated long/short consensus across smart-money wallets, by asset.
/networks/{network}/smart-money/consensusReturns aggregated long/short counts and notional for wallets tagged as smart-money across all assets, ordered by combined notional descending. Use the quality parameter (one or more quality-tier tags) to adjust the smart-money definition.
Quality tiers
Defaults to the tiers DexHunt classifies as consistently profitable. Override quality to widen or narrow that definition.
default filter
Sentiment ratio
sentimentRatio is (longNotional − shortNotional) / (longNotional + shortNotional). Positive = net long; negative = net short; null when total is zero.
−1 to 1
Network identifier. Only hyperliquid is supported.
Example: hyperliquid
One or more quality-tier tags to include. Repeatable. Default: consistent_operator, high_quality, exceptional.
Example: high_quality
Responses
200OK
Aggregated smart-money long/short consensus by asset.
Network identifier.
Resolved quality tiers used for the aggregation.
Per-asset consensus, by combined notional descending.
Asset symbol.
Smart-money wallets long.
Smart-money wallets short.
Long notional in USD.
Short notional in USD.
Net sentiment in −1..1, null when total notional is zero.
400Bad Request
401Unauthorized
404Not Found
500Server Error
curl -sS "https://api.dexhunt.app/v1/networks/hyperliquid/smart-money/consensus?quality=high_quality&quality=exceptional" \
-H "X-API-Key: hlsk_your_developer_key"{
"network": "hyperliquid",
"qualityFilter": ["high_quality", "exceptional"],
"assets": [
{
"canonicalAsset": "BTC",
"longCount": 48,
"shortCount": 12,
"longNotionalUsd": "98000000.00",
"shortNotionalUsd": "18000000.00",
"sentimentRatio": "0.6897"
},
{
"canonicalAsset": "ETH",
"longCount": 30,
"shortCount": 20,
"longNotionalUsd": "44000000.00",
"shortNotionalUsd": "28000000.00",
"sentimentRatio": "0.2222"
}
]
}