Symbol Order Book Ticker
API Description
Best price/qty on the order book for a symbol or symbols.
HTTP Request
GET /fapi/v1/ticker/bookTicker
Request Weight
2 for a single symbol;
5 when the symbol parameter is omitted
Request Parameters
Name | Type | Mandatory | Description |
---|---|---|---|
symbol | STRING | NO |
- If the symbol is not sent, bookTickers for all symbols will be returned in an array.
- The field
X-MBX-USED-WEIGHT-1M
in response header is not accurate from this endpoint, please ignore.
Response Example
{
"symbol": "BTCUSDT",
"bidPrice": "4.00000000",
"bidQty": "431.00000000",
"askPrice": "4.00000200",
"askQty": "9.00000000",
"time": 1589437530011 // Transaction time
}
OR
[
{
"symbol": "BTCUSDT",
"bidPrice": "4.00000000",
"bidQty": "431.00000000",
"askPrice": "4.00000200",
"askQty": "9.00000000",
"time": 1589437530011
}
]