Price Ticker
GETπ Public
Retrieve the latest price for one or more symbols.
The symbol, symbols, and types parameters are mutually exclusive.
| Options | Example |
|---|---|
| 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β
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | String | No | Symbol |
| symbols | String | No | Multiple symbols |
| types | String | No | Multiple types |
Response Contentβ
Successful response
example
GET
https://api.btse.com/public-api/market/v1/ticker/priceResponse
{
"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
}
]
}