Skip to main content

Order Book

API Description#

Check orderbook depth on specific symbol

HTTP Request#

GET /eapi/v1/depth

Request Weight#

1

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    ]  ]}