Skip to main content
Market-data endpoints expose the products you can trade, their underlying assets, live order-book depth, and historical candles. They are all reads, and every result is scoped to your catalogue — you only ever see the products and assets enabled for your account.
All endpoints on this page require the read:market-data claim on your API key (deposit/wallet reads use a different claim — see Wallets & Deposits).

Products

A product is a trading pair (e.g. BTC-USD) with its base/quote assets and order-value limits. Three views are available.

Grouped by asset

Returns every coin that appears in an available product, paired with the products it participates in.

A single coin

Same shape as above, filtered to one coin. Returns null in data when the symbol is unknown, and 404 if there is no product for it.

Flat list of pairs

The same products as GET /product, without the base/quote grouping — handy when you just want a flat list of tradable pairs.

Assets

Returns the assets you can trade — the base and quote assets of the products enabled for your account.
The asset catalogue changes infrequently — this response is safe to cache client-side.

Order book

Returns the current top-10 bid and ask levels for a pair, plus totals and the spread.
Ordering — both sides are highest-price-first. bids[0] is the best bid (highest buy). offers[offers.length - 1] is the best ask (lowest sell). To render the classic stacked book, put offers above bids; the spread sits between offers[last] and bids[0].
totals.bidTotalVolume / askTotalVolume are cumulative notional values (Σ price × amount across the visible side) — use them as the denominator for depth-bar widths.

Candles (OHLCV)

Returns historical OHLCV candles, oldest-first.
timeframe selects both the bucket size and a sensible lookback so a chart shows ~100–300 candles:
* The upstream exchange caps a response at ~300 candles and has no native 4-hour / weekly / monthly / yearly granularity. 4h is approximated with 2-hour candles; the longer labels use daily candles with wider lookbacks.
Candles are gated to your catalogue — requesting a product you can’t trade returns an error. See Fees & Limits for how your product whitelist works.
For exact request/response schemas of every endpoint, see the API Reference.