DH
3 min read·Updated 2026-06-14

Query positioning

Scanned-wallet long/short positioning timeseries with counts, notional, and ratio.

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

Positioning points aggregate DexHunt scanned-wallet positioning by asset and interval. Use these values for long-short ratios, notional imbalance, and changes in tracked wallet exposure.

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

Query Params
intervalstringrequired

Positioning interval. Supported: 15m, 30m, 1h, 2h, 4h, 8h, 12h, 1d, 3d, 1w, 1M.

Example: 1h

fromstring

Start of the time window — ISO 8601 instant or epoch milliseconds.

Example: 2026-06-12T00:00:00Z

tostring

End of the time window — ISO 8601 instant or epoch milliseconds.

limitinteger

Maximum data points to return. Default 500, hard cap 5000.

Example: 500

cursorstring

Epoch-ms cursor from the previous page's nextCursor field.

Responses

200OK

Scanned-wallet long/short positioning timeseries.

Schema
networkstring

Network identifier.

coinstring

Network asset symbol.

canonicalAssetstring

Canonical asset symbol.

intervalstring

Aggregation interval used.

pointsobject[]

Positioning points, newest first.

timeinteger

Sample time in epoch milliseconds.

atstring (ISO 8601)

Sample time as an instant.

longCountinteger

Scanned wallets positioned long.

shortCountinteger

Scanned wallets positioned short.

longNotionalUsdstring

Long notional in USD.

shortNotionalUsdstring

Short notional in USD.

longShortRatiostring

Ratio of long to short notional.

positionValueDiffUsdstring

Long minus short notional in USD.

nextCursorstringnullable

Epoch-ms cursor for the previous window, or null at the start of history.

400Bad Request
401Unauthorized
404Not Found
500Server Error
Request
curl -sS "https://api.dexhunt.app/v1/networks/hyperliquid/markets/BTC/positioning?interval=4h&limit=2" \
  -H "X-API-Key: hlsk_your_developer_key"
Response
200 · OK
{
  "network": "hyperliquid",
  "coin": "BTC",
  "canonicalAsset": "BTC",
  "interval": "4h",
  "points": [
    {
      "time": 1781251200000,
      "at": "2026-06-12T08:00:00Z",
      "longCount": 118,
      "shortCount": 94,
      "longNotionalUsd": "111386355",
      "shortNotionalUsd": "56587359",
      "longShortRatio": "1.2553",
      "positionValueDiffUsd": "54798996"
    }
  ],
  "nextCursor": "1781236800000"
}