Skip to main content

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

NameTypeMandatoryDescription
symbolSTRINGNO
startTimeLONGNOTimestamp in ms to get funding rate from INCLUSIVE.
endTimeLONGNOTimestamp in ms to get funding rate until INCLUSIVE.
limitINTNODefault 100; max 1000
  • If startTime and endTime are not sent, the most recent limit datas are returned.
  • If the number of data between startTime and endTime is larger than limit, return as startTime + 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"
}
]