获取资金费率记录
GET: /v1/future-u/market/public/q/funding-rate-record
Parameters
参数 | 数据类型 | 是否必须 | 默认值 | 描述 | 取值范围 |
---|---|---|---|---|---|
symbol | string | true | N/A | 交易对 | |
direction | string | false | NEXT | 方向(PREV:上一页;NEXT:下一页) | PREV;NEXT |
id | integer | false | N/A | id | |
limit | integer | false | 10 | 条数 |
注:此方法不需要签名
Response
{
"msgInfo": {
"code": "",
"msg": ""
},
"msg": "",
"data": {
"hasNext": false, //是否有下一页
"hasPrev": false, //是否有上一页
"items": [ //数据列表
{
"collectionInternal": 0, //收取时间间隔(秒)
"createdTime": 0, //时间
"fundingRate": 0, //最新资金费率
"id": 0, //id
"symbol": "" //交易对
}
]
},
"code": 200
}