Get Funding Rate History
API Description
Get Funding Rate History
HTTP Request
GET /fapi/v1/fundingRate
Request Weight
share 500/5min/IP rate limit with GET /fapi/v1/fundingInfo
Request Parameters
Name | Type | Mandatory | Description |
---|---|---|---|
symbol | STRING | NO | |
startTime | LONG | NO | Timestamp in ms to get funding rate from INCLUSIVE. |
endTime | LONG | NO | Timestamp in ms to get funding rate until INCLUSIVE. |
limit | INT | NO | Default 100; max 1000 |
- If
startTime
andendTime
are not sent, the most recentlimit
datas are returned.- If the number of data between
startTime
andendTime
is larger thanlimit
, return asstartTime
+limit
.- In ascending order.
Response Example
[
{
"symbol": "BTCUSDT",
"fundingRate": "-0.03750000",
"fundingTime": 1570608000000,
"markPrice": "34287.54619963" // mark price associated with a particular funding fee charge
},
{
"symbol": "BTCUSDT",
"fundingRate": "0.00010000",
"fundingTime": 1570636800000,
"markPrice": "34287.54619963"
}
]