v2
OpenAPI 3.0.02026-07-311824171.4 MBMarket Data
Public
Retrieves the order book (bids and asks) for a given instrument, along with other market values such as best bid/ask prices, last trade price, mark price, and index price.
The order book depth can be controlled using the depth parameter, which accepts values from 1 to 10000. The response includes price levels sorted by price (bids descending, asks ascending).
get/public/get_order_book
Query parameters
instrument_namestring required
Example:BTC-PERPETUAL
The instrument name for which to retrieve the order book, see public/get_instruments to obtain instrument names.
depth1 | 5 | 10 | 20 | 50 | 100 | 1000 | 10000
Example:5
The number of entries to return for bids and asks, maximum - 10000.
Response
Success response
Example response
{
"result": {
"instrument_name": "BTC-PERPETUAL",
"timestamp": 1536569522277,
"stats": {
"price_change": 10.23
},
"index_price": 8247.27
}
}