Skip to main content

Get Funding Rate History

API Description#

Get Funding Rate History

HTTP Request#

GET /fapi/v1/fundingRate

Request Weight#

0

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,    },    {        "symbol": "BTCUSDT",        "fundingRate": "0.00010000",        "fundingTime": 1570636800000,    }]