Skip to main content

Funding Rate

Description

Subscribe to futures funding rate information.

Pushing Frequency

Every 1 minute.

Channel

funding_rate

Request Parameters

ParameterRequiredTypeDescription
eventYesStringOperation: subscribe, unsubscribe
channelYesStringfunding_rate
symbolsYesArraytrading pair array

Request Response

ParameterTypeDescription
eventStringOperation: subscribe, unsubscribe
channelStringfunding_rate
symbolsArraytrading pair array
messageStringError message

Push Data

ParameterTypeDescription
channelStringfunding_rate
dataArrayThe subscribed data
> sStringA trading pair
> tsLongPush time (millisecond)
> fRStringFunding rate
> fTLongTimestamp of the most recent funding rate settlement
> nFRStringThe predicted funding rate is the current estimate of what the funding rate will be at the end of the current funding period.
> nFTLongFunding time for the next period, Unix timestamp format in milliseconds.

Request Example

{
"event": "subscribe",
"channel": ["funding_rate"],
"symbols": ["BTC_USDT_PERP"]
}

Push Data Example

{
"channel": "funding_rate",
"data": [
[
{
"ts": 1718874420000,
"s": "BTC_USDT_PERP",
"nFR": "0.000003",
"fR": "0.000619",
"fT": 1718874000000,
"nFT": 1718874900000
}
]
]
}