Get Index Price of All Futures
Description
Get the index price of all futures
HTTP Request
- GET /fapi/v1/market/allIndexPrice
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
Request Example
http
curl 'https://futuresopenapi.100ex.com/fapi/v1/market/allIndexPrice'Response Parameters
| Parameter | Type | Description |
|---|---|---|
| futuresName | String | Futures name, e.g. "BTC-USDT" |
| indexPrice | String | Index Price |
Response Example
json
{
"code": "0",
"msg": "成功",
"data": [
{
"futuresName": "BTC-USDT",
"indexPrice": "92712.99"
},
{
"futuresName": "ETH-USDT",
"indexPrice": "3155.795"
},
...
]
}