Skip to main content

Get Index Price

Description

Get the current index price.

HTTP Request

GET /v3/market/indexPrice

Request Parameters

ParameterRequiredTypeDescription
symbolNoStringA trading pair. If the field is empty, you will get all trading pairs.

Response Parameters

ParameterTypeDescription
sStringA trading pair, consisting of two currencies: base currency and quote currency
iPxStringIndex price

Request Example

{
"symbol": "BTC_USDT_PERP"
}

Response Example

{
"code": 200,
"msg": "Success",
"data": {
"s": "BTC_USDT_PERP",
"iPx": "60000"
}
}