Get Funding Rate Records
GET: /v1/future-u/market/public/q/funding-rate-record
Parameters
Parameter | Type | Mandatory | Default | Description | Ranges |
---|---|---|---|---|---|
symbol | string | true | N/A | Trading pair | |
direction | string | false | NEXT | Direction (PREV:Previous page; NEXT:Next page) | PREV;NEXT |
id | integer | false | N/A | id | |
limit | integer | false | 10 | Limit |
Note:This method does not require a signature.
Response
{
"msgInfo": {
"code": "",
"msg": ""
},
"msg": "",
"data": {
"hasNext": false, //Is there a next page
"hasPrev": false, //Is there a previous page
"items": [ //Datasheets
{
"collectionInternal": 0, //Billing Cycle (second)
"createdTime": 0, //Time
"fundingRate": 0, //Latest funding rate
"id": 0, //id
"symbol": "" //Trading pair
}
]
},
"code": 200
}