Skip to main content

Order Book

API Description

Check orderbook depth on specific symbol

HTTP Request

GET /eapi/v1/depth

Request Weight

limitweight
5, 10, 20, 502
1005
50010
100020

Request Parameters

NameTypeMandatoryDescription
symbolSTRINGYESOption trading pair, e.g BTC-200730-9000-C
limitINTNODefault:100 Max:1000.Optional value:[10, 20, 50, 100, 500, 1000]

Response Example

{
"T": 1589436922972, // transaction time
"u": 37461 // update id
 "bids": [ // Buy order
[
"1000", // Price
"0.9" // Quantity
]
],
"asks": [ // Sell order
[
"1100", // Price
"0.1" // Quantity
]
]
}