DH
3 min read·Updated 2026-06-14

Rank assets

Asset leaderboards built from the market snapshot.

GET/networks/{network}/rankings/assets

Supported board values are volume, gainers, losers, and popular, built from the market snapshot. The default board is volume.

Path Params
networkstringrequired

Network identifier. Only hyperliquid is supported.

Example: hyperliquid

Query Params
boardstring

Ranking board: volume (default), gainers, losers, popular.

Example: gainers

periodstring

Look-back period for gainers/losers. Default 24h.

limitinteger

Maximum results to return.

Example: 25

Responses

200OK

Ranked asset list for the requested board.

Schema
itemsobject[]

Ranked assets for the requested board.

rankinteger

1-based rank within the board.

symbolstring

Asset symbol.

pricestring

Current price.

changePctstring

Price change percentage for the board period.

volumestring

Traded volume in USD.

listedAtstring (ISO 8601)nullable

Listing timestamp when available.

boardstring

Resolved board — volume, gainers, losers, or popular.

400Bad Request
401Unauthorized
404Not Found
500Server Error
Request
curl -sS "https://api.dexhunt.app/v1/networks/hyperliquid/rankings/assets?board=gainers&limit=3" \
  -H "X-API-Key: hlsk_your_developer_key"
Response
200 · OK
{
  "items": [
    {
      "rank": 1,
      "symbol": "BTC",
      "price": "67000.5",
      "changePct": "1.42",
      "volume": "1850000000",
      "listedAt": null
    }
  ],
  "board": "gainers"
}