Skip to main content
Loading market data…
GET/api/v1/hyperliquid/marketsStandard tier+ · 300 req/min

HL-native markets table — OI, funding, 24h volume, 24h change.

Every instrument tagged `source='hyperliquid'`, sorted by OI desc and annotated with the full market-row shape used across DEX venues.

Query parameters

All query parameters are optional unless marked required.

NameTypeRequiredDefaultDescription
limitnumberoptional200
Max markets. Max 1000.

Response shape

Always wrapped in the standard envelope. Nullable fields are explicitly marked — treat missing numeric data as a real data-source gap, not as an error.

data payloadtypescript
// Wrapped in the standard envelope:
// {
//   data: /* shape below */,
//   meta?: { total?: number; limit?: number; offset?: number; ... }
// }

{
  source: "hyperliquid";
  displayName: "Hyperliquid";
  totalOiUsd: number;
  totalVolume24hUsd: number;
  lastTs: number | null;
  markets: Array<DexMarketRow>;
}

Example

Copy the curl, replace YOUR_KEY with a real key from your dashboard, and run.

Requestbash
curl -sS "http://localhost:3000/api/v1/hyperliquid/markets?limit=10"
Responsejson
{ "data": { "source": "hyperliquid", "displayName": "Hyperliquid", "totalOiUsd": 0, "totalVolume24hUsd": 0, "lastTs": null, "markets": [] }, "meta": { "total": 0, "limit": 10 } }

Next

Check the error code reference, or get an API key to try the request against your own account.