Skip to content

Get Index Price of All Futures

Description

Get the index price of all futures

HTTP Request

  • GET /fapi/v1/market/allIndexPrice

Request Parameters

ParameterTypeRequiredDescription

Request Example

http
curl 'https://futuresopenapi.100ex.com/fapi/v1/market/allIndexPrice'

Response Parameters

ParameterTypeDescription
futuresNameStringFutures name, e.g. "BTC-USDT"
indexPriceStringIndex Price

Response Example

json
{
    "code": "0",
    "msg": "成功",
    "data": [
        {
            "futuresName": "BTC-USDT",
            "indexPrice": "92712.99"
        },
        {
            "futuresName": "ETH-USDT",
            "indexPrice": "3155.795"
        },
        ...
    ]
}