Skip to main content

Price Ticker

Retrieve the latest price for one or more symbols.

The symbol, symbols, and types parameters are mutually exclusive.

OptionsExample
No parameter/ticker/price
symbol/ticker/price?symbol=BTC-USDT
symbols/ticker/price?symbols=["BTC-USDT","ETH-USDT","BTC-PERP-USDT"]
types/ticker/price?types=["Spot"]

Request Parameters​

NameTypeRequiredDescription
symbolStringNoSymbol
symbolsStringNoMultiple symbols
typesStringNoMultiple types

Response Content​

Successful response

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

Response

{
"success": true,
"code": 1,
"msg": "Success",
"time": 1624989977940,
"data": [
{
"symbol": "BTC-USDT",
"price": "20875.31000000",
"time": 1624989976195
},
{
"symbol": "ETH-BTC",
"price": "0.07530600",
"time": 1624989975876
}
]
}