Returns the current order book for both sides (or a specific side) of a market, aggregated by price level with order count and unique-maker count per level.Documentation Index
Fetch the complete documentation index at: https://hypernode-docs.polynode.dev/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
Query parameters
| Param | Type | Default | Description |
|---|---|---|---|
side | int | both | 0 = Yes only, 1 = No only |
levels | int | 30 | Depth per side (max 200) |
Response
| Field | Description |
|---|---|
as_of | Timestamp the book snapshot was computed |
bids[] | Sorted descending by price (highest bid first) |
asks[] | Sorted ascending by price (lowest ask first) |
bids[i].price | Limit price of the level (USDH per share) |
bids[i].size | Total resting size at this level |
bids[i].orders | Number of distinct orders at this level |
bids[i].makers | Number of distinct wallets providing this size |
Use cases
- Live orderbook display: render the book directly.
- Spread + depth analytics:
best_ask - best_bid, sum sizes across N levels. - Liquidity quality: high
makers/ordersratio = many real makers vs few large limit orders.
Examples
Notes
- For historical book reconstruction at any past timestamp see
/v1/markets/:id/book/at/:ts(coming soon). - Edge-cached for 1 second.