Home/Data sources
Hyperliquid Historical Data API
Skip the lz4 archives and S3 dumps. Kwery delivers clean, normalized Hyperliquid historical data through a REST API: trades, orderbook (L2) snapshots, funding rates, and open interest. Same API as Polymarket, Kalshi, and Binance—ideal for cross-venue arbitrage and quant research.
What you get
- Hyperliquid perpetuals: BTC, ETH, SOL, XRP
- Order book depth and OHLCV (5m–24h)
- Funding rates and open interest
- Unified schema with Binance, Polymarket, Kalshi
- Historical snapshots for backtesting
Sample request & response
GET /v1/hyperliquid/candles?symbol=BTC&interval=1h&limit=720
{
"symbol": "BTC",
"source": "hyperliquid",
"interval": "1h",
"candles": [{
"time": "2026-03-04T14:00:00Z",
"open": 67200.5,
"close": 67350.0,
"funding_rate": 0.0001,
"open_interest": 125000000
}],
"total": 720
}Use Hyperliquid data in one API
Same credentials and docs as Polymarket and Binance.