获取单个合约交易对指数/标记价格
描述
获取单个合约交易对的指数/标记价格
HTTP请求
- GET /fapi/v1/market/index
请求参数
| 参数名 | 参数类型 | 是否必须 | 描述 |
|---|---|---|---|
| futuresName | String | 是 | 合约名称, 如: "E-BTC-USDT" |
请求示例
http
curl 'https://futuresopenapi.100ex.com/fapi/v1/market/index?futuresName=E-BTC-USDT'返回参数
| 参数名 | 参数类型 | 描述 |
|---|---|---|
| currentFundRate | String | 当前资金费率 |
| indexPrice | String | 指数价格 |
| tagPrice | String | 标记价格 |
| nextFundRate | String | 下一个资金费率 |
返回示例
json
{
"code": "0",
"msg": "成功",
"data": {
"currentFundRate": "0.0000556137889161",
"indexPrice": "91903.25",
"tagPrice": "57996.3744087751978165",
"nextFundRate": "0.0001"
}
}