Get top-10 order book snapshot
Returns the current top-10 bid and ask levels for the given trading pair.
Ordering — standard exchange layout
Both bids and offers are ordered highest price first.
bids[0]is the best bid (highest buy, closest to spread).offers[offers.length - 1]is the best ask (lowest sell, closest to spread).
Renders directly into two stacked tables: iterate each array top-to-bottom,
put the asks (offers) above the bids, and the spread row sits between
offers[last] and bids[0].
Totals
totals.bidTotalVolume / askTotalVolume are cumulative notional values
(sum of price × amount across the visible side) — use them as the
denominator for depth-bar widths.
Authorizations
HMAC-SHA256 authentication. Sign every request and send X-API-KEY, X-API-SIGNATURE, X-API-TIMESTAMP and X-API-NONCE (see the Authentication guide). Each route also requires a specific claim on your API key (e.g. read:orders, write:orders, read:account, read:market-data).
Path Parameters
Trading pair id (e.g. BTC-USD).
"BTC-USD"
