Skip to content

Get Index Price

Description

Get index/tag price of given futures name

HTTP Request

  • GET /fapi/v1/market/index

Request Parameters

ParameterTypeRequiredDescription
futuresNameStringYesFutures name, e.g. "E-BTC-USDT"

Request Example

http
curl 'https://futuresopenapi.100ex.com/fapi/v1/market/index?futuresName=E-BTC-USDT'

Response Parameters

ParameterTypeDescription
currentFundRateStringCurrent funding rate
indexPriceStringIndex price
tagPriceStringTag price
nextFundRateStringNext funding rate

Response Example

json
{
    "code": "0",
    "msg": "成功",
    "data": {
        "currentFundRate": "0.0000556137889161",
        "indexPrice": "91903.25",
        "tagPrice": "57996.3744087751978165",
        "nextFundRate": "0.0001"
    }
}