DH
4 min read·Updated 2026-06-14

Smart-money consensus

Aggregated long/short consensus across smart-money wallets, by asset.

GET/networks/{network}/smart-money/consensus

Returns 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

Path Params
networkstringrequired

Network identifier. Only hyperliquid is supported.

Example: hyperliquid

Query Params
qualitystring

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.

Schema
networkstring

Network identifier.

qualityFilterstring[]

Resolved quality tiers used for the aggregation.

assetsobject[]

Per-asset consensus, by combined notional descending.

canonicalAssetstring

Asset symbol.

longCountinteger

Smart-money wallets long.

shortCountinteger

Smart-money wallets short.

longNotionalUsdstring

Long notional in USD.

shortNotionalUsdstring

Short notional in USD.

sentimentRatiostringnullable

Net sentiment in −1..1, null when total notional is zero.

400Bad Request
401Unauthorized
404Not Found
500Server Error
Request
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"
Response
200 · OK
{
  "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"
    }
  ]
}