Get order flow
- Hyperliquid
- HIP-3
- HIP-4
/v1/hyperliquid/orders/{symbol}/flow. Plain perp symbols such as BTC.interval to control bucket size; granularity is ignored by the live route. This route does not implement cursor pagination.
Request parameters
Example response
Hyperliquid core,BTC, one five-minute bucket. The request ID is synthetic.
When to use it
Use Order flow to compare how placement, cancellation, fill, and trigger counts change between buckets. If placements and cancellations rise while fills stay flat, the book may be churning without comparable execution. Inspect Order history for the individual orders or the L4 order book for the resulting resting depth. Theinterval parameter trades resolution for response size. Finer buckets show more detail but return more rows. Keep the venue family, symbol, window, and interval with every stored result so a later run reproduces the same view.
Order flow and the L4 order book use the same order-event source but answer different questions. L4 reconstructs the resting orders. Order flow summarizes event activity by time bucket.
How it differs
Stream it live
Order flow is a REST-side aggregation, so there is no order-flow channel. For live order activity, stream the L4 order events (l4_orders, or the venue-prefixed variant) and aggregate the order-event activity yourself.
Export in bulk
There is no standalone order-flow export schema. Export the raw order events with thel4_orders (Order Events) schema ($8/GB, $25 minimum) and aggregate to flow downstream. Schema columns and coverage keys are on Export schemas.