Skip to content

Get All Tag/Index Prices

Description

Get all trading pair tag and index prices

HTTP Request

  • GET /fapi/v1/market/allIndexTagPrice

Request Parameters

ParameterTypeRequiredDescription

Request Example

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

Response Parameters

ParameterTypeDescription
> futuresNameStringFutures name
> tagPriceStringTag price
> indexPriceStringIndex price

Response Example

json
{
    "code": "0",
    "msg": "成功",
    "data": [
        {
            "futuresName": "E-BTC-USDT",
            "tagPrice": "57879",
            "indexPrice": "93683.64"
        },
        ...
    ]
}