Skip to main content

Orderbook

GET /v1/api/orderbook

This endpoint returns the full orderbook for the named symbol and up to the specified depth.

This is a public endpoint, authentication is not required.

Parameters

NameTypeComments
depthinteger1-100
symbolstringInstrument name e.g BTC-USD

Order Book Response

NameTypeComments
server_utc_timestampintegerTime at which the message was generated by the API
symbolstringInstrument name e.g BTC-USD
tradeable_entity_idintegerunique instrument id
buyOrderBookItem[]see below

OrderBookItem Message

NameTypeComments
pricefloat"12.0" / "1.1245" / "0.000100"
quantityfloat"12.0" / "1.1245" / "0.000100"

Example

{
"orderbook_response": {
"server_utc_timestamp": "1670248227985984",
"symbol": "BTC-20221209-10000C",
"tradeable_entity_id": "4439",
"buy": [
{ "price": "10.0", "quantity": "4.0" },
{ "price": "12.0", "quantity": "0.2" }
],
"sell": []
}
}