data as generic objects, keep the envelope and metadata, inspect the current endpoint response, and avoid binding a fixed model from an example.
Examples show returned values; they are not the schema source. Use OpenAPI or Endpoint reference for exact types, then use this page to check envelope handling, request IDs, pagination, venue context, and parser boundaries.
Most market-data routes use this envelope:
L2 Order Book Snapshot
Request:px is the level price, sz is total size at that price, and n is the number of orders contributing to the level.
Trade List
Request:side uses venue side codes. Preserve direction, maker/taker fields, fees, cursor, and request ID when trades feed a backtest or risk view.
Empty Page With Cursor Exhausted
Some bounded historical requests can succeed with no returned rows. Treat an emptydata array as a valid response when success is true; the job decision should come from the requested window, data-quality state, and whether meta.next_cursor is present.
Funding, Open Interest, And Candles
Funding response:Liquidation Event
Hyperliquid Spot Trade
HYPE-USDC. Keep Spot routes separate from core perp symbols such as HYPE.
HIP-3 Builder Market Trade
km:. Do not strip the prefix when routing, storing rows, or comparing to Hyperliquid core symbols.
HIP-4 Outcome Book
mid_price and mark_price are probability-like values in [0, 1], not ordinary USD prices.
L4, L3, And Lifecycle Routes
The generated OpenAPI contract exposes several high-depth routes asdata: object[] because the records are route-specific:
Use the generated endpoint page before creating typed models for these route families. Do not copy L4 or L3 field names from another venue, export schema, or browser view into API client code.
Lighter L3 Order Book
Request:data, not an array of books. Do not parse it as an aggregated L2 book, and keep the Lighter venue family attached to stored records.
Data Freshness
Request:Data-Quality Coverage Response
Request:success, data, or meta.request_id from coverage bodies that do not expose those fields.