Backtest on the archive. Deploy on the wire.
Low-latency order flow and book microstructure live, with captured historical data available by request for backtests.
The parts you keep working around.
Backtests built on candles or sampled trades diverge from production the moment queue position matters.
Most feeds stop at L2: no order-level book, no way to reconstruct state at a given block.
Maintaining one pipeline for history and another for live doubles the schema-drift surface.
How the platform answers, point by point.
Delivery you can measure, a schema that doesn't fork.
Stream delivery percentiles are published unedited. Degraded windows stay on the chart. Below them, a raw captured fill and a live message show the shared field model.
Stream delivery overheadp50 / p95 / p99 · ms · log scale
Worst window in range: p99 114.09 ms (16:00). Percentiles are published unedited, and degraded windows stay on the chart. Illustrative series in the published-benchmark format.
Archive row · trades dataset
manual Parquet / CSV / JSONL export
Live message · StreamSwaps
stream.hyperliquidrpc.com:443 · gRPC
Hover a field. It is the same field, byte for byte, on both sides. Raw export fields stay aligned with the stream field model.
The L4 book, subscribed.
Snapshot first, then per-block diffs in strict block order. Prices and sizes arrive as exact decimal strings, so the parser you backtest with is the parser you ship.
Read the docsimport grpc channel = grpc.secure_channel( "stream.hyperliquidrpc.com:443", grpc.ssl_channel_credentials(),)metadata = (("x-api-key", "YOUR_KEY"),) # Full order-by-order book: snapshot, then per-block diffsstub = orderbook_pb2_grpc.OrderBookStreamingStub(channel)for msg in stub.StreamL4Book( orderbook_pb2.L4BookRequest(coin="BTC"), metadata=metadata): handle(msg) # exact decimal strings, no float roundingThe plan that fits.
Ultra
$199/moRecommendedRecent replay and maximum throughput.
Ultra adds recent replay up to 6 hours and higher throughput. Historical exports are prepared manually on request; desks needing private throughput go Enterprise.
Compare both plansPut the archive under your backtest.
Start on Pro for the live feeds. Ultra adds recent replay up to 6 hours; manual historical exports are available on request.