Skip to main content

Ticker Indices

Retrieve the index price and mark price for one or more symbols. Mark price is only returned for futures symbols.

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

Request Parameters​

NameTypeRequiredDescription
symbolStringNoSymbol
symbolsStringNoMultiple symbols
typesStringNoMultiple types

Response Content​

Successful response

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

Response

{
"success": true,
"code": 1,
"msg": "Success",
"time": 1624989977940,
"data": [
{
"symbol": "BTC-USD",
"indexPrice": "100000.7100000"
},
{
"symbol": "BTC-PERP-USDT",
"indexPrice": "29647.7100000",
"markPrice": "29649.9000000"
}
]
}