HYPE-USDC: order books, trades, candles, full order-level (L4) reconstruction, TWAP, and freshness, all from one key.
0xArchive exposes Hyperliquid Spot through /v1/hyperliquid/spot, with pair discovery, pair metadata, order books, trades, candles, L4 reconstruction surfaces, order history, TWAP, user TWAP, and freshness checks. Spot trades go back to March 2025, native 20-level order books to May 2026, and order-level (L4) reconstruction to March 2026.
Start Here
Choose the pair
Use
/v1/hyperliquid/spot/pairs to discover supported pair symbols such as HYPE-USDC.Pull a bounded result
Start with
/v1/hyperliquid/spot/orderbook/HYPE-USDC?depth=10, /v1/hyperliquid/spot/trades/HYPE-USDC?limit=50, or /v1/hyperliquid/spot/candles/HYPE-USDC?interval=1h&limit=50.Why 0xArchive Fits
Hyperliquid Spot builders need more than a one-off latest book. 0xArchive gives the same API posture as the rest of the product: authenticated REST, Endpoint Reference pages, JSON response envelopes, request IDs, pair discovery, live and historical windows, full order-level (L4) reconstruction, and freshness checks. One key covers the current book and the full Spot history behind it.Spot Route Map
| Need | Route |
|---|---|
| Pair discovery | /v1/hyperliquid/spot/pairs |
| Pair metadata | /v1/hyperliquid/spot/pairs/{symbol} |
| Current order book | /v1/hyperliquid/spot/orderbook/{symbol} |
| Historical order book | /v1/hyperliquid/spot/orderbook/{symbol}/history |
| Historical trades | /v1/hyperliquid/spot/trades/{symbol} |
| Historical candles | /v1/hyperliquid/spot/candles/{symbol} |
| L4 checkpoint or history | /v1/hyperliquid/spot/orderbook/{symbol}/l4 and history or diffs routes |
| Order history | /v1/hyperliquid/spot/orders/{symbol}/history |
| TWAP | /v1/hyperliquid/spot/twap/{symbol} and user TWAP routes |
| Freshness | /v1/hyperliquid/spot/freshness/{symbol} |
HYPE-USDC. Use Spot candles for pair OHLCV history; use core Hyperliquid pages for perp funding, open interest, and liquidations.
Implementation Notes
Spot symbols are pair symbols. KeepHYPE-USDC-style values separate from core perp symbols such as BTC, HIP-3 namespaced symbols such as km:US500, and HIP-4 outcome identifiers. Use pair discovery before allowing a user or agent to submit arbitrary symbols.
For L4 and TWAP workflows, treat empty results or unavailable checkpoints as a state the client must handle. Preserve the error or response request_id, check freshness, and avoid filling missing reconstruction data with synthetic state.