Skip to main content

Ticker Order Book Level 1

Retrieve the level 1 order book (best bid/ask) for one or more symbols.

The symbol and symbols parameters are mutually exclusive.

OptionsExample
No parameter/ticker/l1
symbol/ticker/l1?symbol=BTC-USDT
symbols/ticker/l1?symbols=["BTC-USDT","BTC-PERP-USDT"]

Request Parameters​

NameTypeRequiredDescription
symbolStringNoSymbol
symbolsStringNoMultiple symbols

Response Content​

Successful response

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

Response

{
"success": true,
"code": 1,
"msg": "Success",
"time": 1624989977940,
"data": [
{
"symbol": "BTC-USDT",
"bidPrice": "20875.00000000",
"bidQty": "0.03478000",
"askPrice": "20875.77000000",
"askQty": "0.01129000",
"time": 1673325783227
}
]
}