DH
3 min read·Updated 2026-06-14

Market concentration

Long/short notional for a market broken down by wallet quality cohort.

GET/networks/{network}/markets/{asset}/concentration

Wallet 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.

Path Params
networkstringrequired

Network identifier. Only hyperliquid is supported.

Example: hyperliquid

assetstringrequired

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.

Schema
networkstring

Network identifier.

canonicalAssetstring

Canonical asset symbol.

longWalletCountinteger

Wallets currently long.

shortWalletCountinteger

Wallets currently short.

longNotionalUsdstring (decimal)

Total long notional in USD.

shortNotionalUsdstring (decimal)

Total short notional in USD.

longByCohortobject[]

Long notional by wallet quality cohort.

cohortstring

Wallet quality cohort label.

walletCountinteger

Wallets in the cohort.

notionalUsdstring (decimal)

Cohort notional in USD.

shareOfSidestring (decimal)

Cohort share of the long side (0–1).

shortByCohortobject[]

Short notional by wallet quality cohort.

cohortstring

Wallet quality cohort label.

walletCountinteger

Wallets in the cohort.

notionalUsdstring (decimal)

Cohort notional in USD.

shareOfSidestring (decimal)

Cohort share of the short side (0–1).

400Bad Request
401Unauthorized
404Not Found
500Server Error
Request
curl -sS "https://api.dexhunt.app/v1/networks/hyperliquid/markets/BTC/concentration" \
  -H "X-API-Key: hlsk_your_developer_key"
Response
200 · OK
{
  "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" }
  ]
}