Get All Tag/Index Prices
Description
Get all trading pair tag and index prices
HTTP Request
- GET /fapi/v1/market/allIndexTagPrice
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
Request Example
http
curl 'https://futuresopenapi.100ex.com/fapi/v1/market/allIndexTagPrice'Response Parameters
| Parameter | Type | Description |
|---|---|---|
| > futuresName | String | Futures name |
| > tagPrice | String | Tag price |
| > indexPrice | String | Index price |
Response Example
json
{
"code": "0",
"msg": "成功",
"data": [
{
"futuresName": "E-BTC-USDT",
"tagPrice": "57879",
"indexPrice": "93683.64"
},
...
]
}