获取市场资金费率
HTTP 请求
GET /futures/funding-rate
请求参数
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
market | false | string | 市场名列表,多个市场名之间使用英文","分隔,限制最多10个市场,空字符串或不传表示查询全部市场 |
请求响应
参数名 | 类型 | 说明 |
---|---|---|
market | string | 市场名称 |
mark_price | string | 标记价格 |
latest_funding_rate | string | 当期资金费率。当期结算时间点的资金费率,每分钟计算一次,仅供参考。 资金费率为正,则多方支付空方费用; 资金费率为负,则空方支付多方费用。 |
next_funding_rate | string | 下期预测资金费率。与当前资金费率一致。在资金费用收取时刻,预测资金费率=当前资金费率 |
max_funding_rate | string | 最大资金费率。当前市场允许配置的资金费率上限。 |
min_funding_rate | string | 最小资金费率。当前市场允许配置的资金费率下限。 |
latest_funding_time | int | 当期资金费率收取时间。资金费用每分钟计算一次,默认8小时支付/收取一次,当溢价率过高时,可动态调整为2h、4h。 |
next_funding_time | int | 下期资金费率收取时间。资金费用每分钟计算一次,默认8小时支付/收取一次,当溢价率过高时,可动态调整为2h、4h。 |
响应示例
GET /futures/funding-rate?market=LATUSDT,ELONUSDT
响应示例
{
"code": 0,
"data": [
{
"market": "LATUSDT",
"mark_price": "0.008157",
"latest_funding_rate": "-0.00007488",
"next_funding_rate": "-0.00027732",
"max_funding_rate": "0.00375",
"min_funding_rate": "-0.00375",
"latest_funding_time": 1642145331234,
"next_funding_time": 1642231731234
},
{
"market": "ELONUSDT",
"mark_price": "0.000000152823",
"latest_funding_rate": "-0.00003688",
"next_funding_rate": "-0.00013372",
"max_funding_rate": "0.00375",
"min_funding_rate": "-0.00375",
"latest_funding_time": 1642145331234,
"next_funding_time": 1642231731234
}
],
"message": "OK"
}