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, 501
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

{
"bids": [ // Buy order
[
"1000.000", // Price
"0.1000" // Quantity
]
],
"asks": [ // Sell order
[
"1900.000", // Price
"0.1000" // Quantity
]
],
"T": 1762780909676, // transaction time
"lastUpdateId": 361 // update id
}