Funding Rate History
GETπ Public
Retrieve funding rate history for a futures symbol over a specified period.
Historical rates are sorted in ascending order by timestamp.
Request Parametersβ
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | String | Yes | Futures symbol |
| period | String | Yes | Funding rate history period: 7D (7 days) Β· 2W (2 weeks) Β· 1M (1 month) |
Response Contentβ
Successful response
example
GET
https://api.btse.com/public-api/market/v1/recentFundingHistoryResponse
{
"success": true,
"code": 1,
"msg": "Success",
"time": 1624989977940,
"data": [
{
"timestamp": 1715500800000,
"rate": "0.0000153752"
},
{
"timestamp": 1715529600000,
"rate": "0.0000130831"
}
]
}