DH
4 min read·Updated 2026-06-12

DexHunt API

API for Hyperliquid wallet discovery, market analytics, liquidation levels, rankings, and activity data.

What the API provides

DexHunt gives you analytics over Hyperliquid wallets and markets — wallet discovery, positioning, liquidation levels, rankings, and activity. Every request needs a developer token in the X-API-Key header.

Make the first request

Start by listing the available networks. The network id is hyperliquid and sits in the path of every endpoint.

Request
bash
curl -sS "https://api.dexhunt.app/v1/networks" \
  -H "X-API-Key: hlsk_your_developer_key"
Example response
json
{
  "items": [
    {
      "network": "hyperliquid",
      "displayName": "Hyperliquid",
      "scanAssetCount": 250
    }
  ],
  "nextCursor": null
}

Data model

Responses draw on scanned-wallet current state, indexed profile history, and selected live reads from Hyperliquid. A single response can combine all three behind one JSON contract.

Coverage is explicit

Wallet and market aggregates cover scanned wallets, not every wallet on the exchange.

coverage = scanned_wallets

Decimals are strings

Money, prices, PnL, percentages, and other decimal values are returned as JSON strings to preserve precision.

decimal-safe

Nullable means unavailable

Some analytics fields depend on wallet profiles or live upstream data. When the signal is missing, the field is null.

No fake zeroes

Pagination is cursor based

List endpoints use limit plus cursor. Treat cursors as opaque values, not offsets or timestamps you can construct.

items + nextCursor

Choose an API group

What to do next