fundingIntervalHours

Hi,

Is there a WSS websocket endpoint available that will provide me with the fundingIntervalHours that will allow me to obtain the equivalent of this;

Im specifically interested in the “fundingIntervalHours” value for a particular symbol/pair. I’d prefer to get it over websockets than making HTTP requests. That way its pushed to me automatically, I don’t have to “poll” etc.

Get Funding Rate Info

Response:

[
    {
        "symbol": "BLZUSDT",
        "adjustedFundingRateCap": "0.02500000",
        "adjustedFundingRateFloor": "-0.02500000",
        "fundingIntervalHours": 8,
        "disclaimer": false   // ingore
    }
]

GET /dapi/v1/fundingInfo

Query funding rate info for symbols that had FundingRateCap/ FundingRateFloor / fundingIntervalHours adjustment

Binance API Documentation;

Response:

[
    {
        "symbol": "BLZUSDT",
        "adjustedFundingRateCap": "0.02500000",
        "adjustedFundingRateFloor": "-0.02500000",
        "fundingIntervalHours": 8,
        "disclaimer": false   // ingore
    }
]

Thanks much,

Graham

Unfortunately I think the restful endpoint is the only channel to get it.

Thanks

2 Likes

Thanks @dino

Appreciate it.

Graham

1 Like