Skip to main content
Version: V3

Get Best Bid/Ask

  • GET /api/v3/market/ticker/bookTicker

Weight(IP): 4

Request parameters

ParameterTypeRequired?Description
symbolStringNoSingle trading pair (mutually exclusive with symbols).
symbolsArrayNoMultiple trading pairs. Accepts comma-separated values or a JSON array.

Request example

curl "https://api-spot.weex.com/api/v3/market/ticker/bookTicker?symbols=BTCUSDT,ETHUSDT"

Response parameters

FieldTypeDescription
symbolStringTrading pair.
bidPriceStringBest bid price.
bidQtyStringBest bid quantity.
askPriceStringBest ask price.
askQtyStringBest ask quantity.

If symbol is supplied the response is a single object; otherwise, it is an array.

Response example

[
{
"symbol": "BTCUSDT",
"bidPrice": "68919.90",
"bidQty": "2.480",
"askPrice": "68920.60",
"askQty": "1.102"
}
]