Skip to main content

Order Book

Retrieve the level 2 order book for a symbol.

This API can be publicly accessed (without any security headers). If you access with Read permission authentication, the result will be much more accurate by account setting.

Request Parameters​

NameTypeRequiredDescription
symbolStringYesSymbol
depthIntegerNoThe depth of order book

Response Content​

Successful response

example
GEThttps://api.btse.com/public-api/market/v1/orderbook

Response

{
"success": true,
"code": 1,
"msg": "Success",
"time": 1624989977940,
"data": {
"timestamp": 1624989977940,
"bids": [
[
"20334.2",
"7.67500"
]
],
"asks": [
[
"20339.0",
"0.60200"
]
]
}
}