Funding rates
HTTP Request
GET /api/v1/global/data/fundingRates
Get funding rates for a time period
Request Parameters
Parameter | Type | Required | Description |
---|---|---|---|
source | String | Yes | Exchange type:DERIBIT ,OKX ,BYBIT |
instrumentId | String | Yes | Instrument id. You may check available ids using endpoint: Funding instruments |
startTime | Num | Yes | The start timestamp (UTC, in seconds) |
endTime | Num | Yes | The end timestamp (UTC, in seconds) |
Response Parameters
Parameter | Type | Description |
---|---|---|
interest | Num | Funding rate |
timestamp | Num | Settlement time (UTC, in seconds) |
Request Example
GET /api/v1/global/data/fundingRates?source=BYBIT&instrumentId=BTCPERP&startTime=1727691691&endTime=1719732091
Max response array size 200
Response Example
[
{
"interest": 1.0E-4,
"timestamp": 1727683200
},
{
"interest": 1.0E-4,
"timestamp": 1727654400
},
{
"interest": 1.0E-4,
"timestamp": 1727625600
},
{
"interest": 9.333E-5,
"timestamp": 1727596800
},
{
"interest": 6.131E-5,
"timestamp": 1727568000
},
{
"interest": 3.523E-5,
"timestamp": 1727539200
},
{
"interest": 1.543E-5,
"timestamp": 1727510400
},
{
"interest": -1.661E-5,
"timestamp": 1727481600
},
{
"interest": 3.2E-5,
"timestamp": 1727452800
},
{
"interest": 9.577E-5,
"timestamp": 1727424000
},
{
"interest": 5.935E-5,
"timestamp": 1727395200
},
{
"interest": 1.0E-4,
"timestamp": 1727366400
},
{
"interest": 1.0E-4,
"timestamp": 1727337600
},
{
"interest": 1.0E-4,
"timestamp": 1727308800
},
{
"interest": 8.315E-5,
"timestamp": 1727280000
},
{
"interest": 1.196E-5,
"timestamp": 1727251200
},
{
"interest": 3.637E-5,
"timestamp": 1727222400
},
{
"interest": 5.511E-5,
"timestamp": 1727193600
},
{
"interest": 8.629E-5,
"timestamp": 1727164800
},
{
"interest": 8.948E-5,
"timestamp": 1727136000
},
{
"interest": -9.62E-6,
"timestamp": 1727107200
},
{
"interest": 1.0E-4,
"timestamp": 1727078400
}
]