Get Index Price
Description
Get index/tag price of given futures name
HTTP Request
- GET /fapi/v1/market/index
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| futuresName | String | Yes | Futures name, e.g. "E-BTC-USDT" |
Request Example
http
curl 'https://futuresopenapi.100ex.com/fapi/v1/market/index?futuresName=E-BTC-USDT'Response Parameters
| Parameter | Type | Description |
|---|---|---|
| currentFundRate | String | Current funding rate |
| indexPrice | String | Index price |
| tagPrice | String | Tag price |
| nextFundRate | String | Next funding rate |
Response Example
json
{
"code": "0",
"msg": "成功",
"data": {
"currentFundRate": "0.0000556137889161",
"indexPrice": "91903.25",
"tagPrice": "57996.3744087751978165",
"nextFundRate": "0.0001"
}
}