Market concentration
Long/short notional for a market broken down by wallet quality cohort.
/networks/{network}/markets/{asset}/concentrationWallet concentration breaks down long and short notional for a single market by wallet quality cohort. Each entry includes the cohort's share of its side, so you can see which wallet tiers drive each direction.
Network identifier. Only hyperliquid is supported.
Example: hyperliquid
Canonical asset symbol or network symbol (e.g. BTC, ETH, xyz:SP500).
Example: BTC
Responses
200OK
Long/short notional broken down by wallet quality cohort.
Network identifier.
Canonical asset symbol.
Wallets currently long.
Wallets currently short.
Total long notional in USD.
Total short notional in USD.
Long notional by wallet quality cohort.
Wallet quality cohort label.
Wallets in the cohort.
Cohort notional in USD.
Cohort share of the long side (0–1).
Short notional by wallet quality cohort.
Wallet quality cohort label.
Wallets in the cohort.
Cohort notional in USD.
Cohort share of the short side (0–1).
400Bad Request
401Unauthorized
404Not Found
500Server Error
curl -sS "https://api.dexhunt.app/v1/networks/hyperliquid/markets/BTC/concentration" \
-H "X-API-Key: hlsk_your_developer_key"{
"network": "hyperliquid",
"canonicalAsset": "BTC",
"longWalletCount": 86,
"shortWalletCount": 32,
"longNotionalUsd": "142000000.00",
"shortNotionalUsd": "38000000.00",
"longByCohort": [
{ "cohort": "high_quality", "walletCount": 28, "notionalUsd": "82000000.00", "shareOfSide": "0.577464" },
{ "cohort": "exceptional", "walletCount": 10, "notionalUsd": "38000000.00", "shareOfSide": "0.267606" }
],
"shortByCohort": [
{ "cohort": "unproven", "walletCount": 20, "notionalUsd": "22000000.00", "shareOfSide": "0.578947" }
]
}