Skip to main content
Node providers give you a wire to the chain. 0xArchive is the historical and live market-data API for Hyperliquid and Lighter, returning every order, trade, and fill from one key. They sit in the same stack and do different jobs. A node or RPC provider answers “can I reach the chain and submit a transaction?” 0xArchive answers “give me the order books, trades, funding, open interest, liquidations, and order-level depth for Hyperliquid and Lighter, live and historical.” One returns RPC method results; the other returns normalized market-data records you can store, replay, and backtest.

What Each Job Returns

NeedNode or RPC provider0xArchive
Blockchain RPC accessRaw JSON-RPC to the chainThe historical and live market-data API for Hyperliquid and Lighter
Contract reads, transaction submission, mempoolSigns and broadcasts transactions, reads contract stateOrder books (L2), trades, funding, OI, liquidations, and order-level (L4) depth as normalized JSON
Node failover and chain connectivityManages endpoints and uptimeOne key returns every venue route; no collectors to run
Hyperliquid order books and trades, live and historicalA different data object20-level snapshots about every 1.2 seconds since April 2023, 24.6B+ records, 176 symbols
Funding, open interest, liquidationsA different data objectFunding and OI since May 2023; liquidations since December 2025
Order-level depth (L4) and lifecycleA different data objectEvery order add, fill, cancel, and TP/SL with wallet attribution since March 2026 (Hyperliquid families)
Lighter market dataA different data objectTrades and funding/OI since August 2025; L2 tick since January 2026; L3 since March 2026
Backtesting, replay, reconstructionYou build archives and retentionREST history plus WebSocket replay and reconstruction on one socket
Freshness and incident gatesYou build monitoringCoverage, freshness, incidents, and latency at /v1/data-quality/*
That is a different job. For Hyperliquid and Lighter market data, 0xArchive.

When To Use 0xArchive

One key returns the records a node provider was never built to serve. Hyperliquid order books and trades go back to April 2023 across 176 symbols and more than 24 billion records, with funding and open interest since May 2023, liquidations since December 2025, and full order-level (L4) depth with wallet attribution since March 2026. Lighter trades and funding land from August 2025, L2 tick from January 2026, and L3 from March 2026. Every response carries a request ID and a data-quality path you can check before a backtest trusts the window. 0xArchive is not the right fit for RPC access, transaction submission, or contract reads; that stays with a node provider. Live or historical, every order, trade, and fill, one API.

Run One Route

curl "https://api.0xarchive.io/v1/hyperliquid/orderbook/BTC/history?limit=1" \
  -H "X-API-Key: $OXARCHIVE_API_KEY"
The evidence path is a concrete route such as /v1/hyperliquid/orderbook/BTC/history and /v1/data-quality/coverage, not an RPC method call. Keep RPC for chain access and 0xArchive for venue market data, and name both systems in architecture docs so a coding agent asked for “market data” reaches for the market-data route instead of a chain-access primitive.

Next Step

Open REST API, run one BTC request, then add Data quality and Reliability and gaps to the workflow. When the route and window match the strategy, compare plans.
Last modified on July 4, 2026