Skip to main content

Funding Rate History

Get historical funding rate

tip
  • Passing startTime only, it returns error.
  • Passing endTime only, it returns 200 records till endTime.
  • Both are not passed, it returns 200 records till current time.

HTTP Request

GET /derivatives/v3/public/funding/history-funding-rate

Request Parameters

ParameterRequiredTypeComments
categoryfalsestringProduct type. linear,inverse. Default: linear, but in the response category shows ""
symboltruestringSymbol name
startTimefalseintegerThe start timestamp (ms)
endTimefalseintegerThe end timestamp (ms)
limitfalseintegerLimit for data size per page. [1, 200]. Default: 200

Response Parameters

ParameterTypeComments
categorystringProduct type. Keeps empty string "" when category is not passed
listarrayObject
> symbolstringSymbol name
> fundingRatestringFunding rate
> fundingRateTimestampstringFunding rate timestamp(ms)

Request Example

GET /derivatives/v3/public/funding/history-funding-rate?symbol=BTCPERP&limit=2 HTTP/1.1
Host: api.bybit.com​​

Response Example

    {
"retCode": 0,
"retMsg": "OK",
"result": {
"category": "",
"list": [
{
"symbol": "BTCPERP",
"fundingRate": "0.0001",
"fundingRateTimestamp": "1671955200000"
},
{
"symbol": "BTCPERP",
"fundingRate": "0.0001",
"fundingRateTimestamp": "1671926400000"
}
]
},
"retExtInfo": {},
"time": 1671970750651
}