Get Market Funding Rate History
HTTP request
GET /futures/funding-rate-history
Request parameters
Parameter Name | Required | Type | Notes |
---|---|---|---|
market | true | string | Market name |
start_time | false | int | Query start time.
|
end_time | false | int | Query end time.
|
page | false | int | Number of pagination. Default is 1. |
limit | false | int | Number in each page. Default is 10. |
Return parameters
Parameter Name | Type | Notes |
---|---|---|
market | string | Market name |
funding_time | int | Funding rate collection time |
theoretical_funding_rate | string | Theoretical funding rate. The theoretical funding rate to be collected for the current period after calculation |
actual_funding_rate | string | Actual funding rate. The actual funding rate charged in the current period |
Response example
GET /futures/funding-rate-history?market=LATUSDT,ELONUSDT
Response example
{
"code": 0,
"data": [
{
"market": "LATUSDT",
"funding_time": 1642145331234,
"theoretical_funding_rate": "-0.00007488",
"actual_funding_rate": "-0.00027732"
},
{
"market": "ELONUSDT",
"funding_time": 1642145331234,
"theoretical_funding_rate": "-0.00003688",
"actual_funding_rate": "-0.00013372"
}
],
"pagination": {
"has_next": false
},
"message": "OK"
}