Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developer.wooxpro.com/llms.txt

Use this file to discover all available pages before exploring further.

【Public】Funding Rate Channel

Return funding Rate data

Pushing Rules

  1. No user login required
  2. After subscribing, the current data will be returned directly, and updates will be pushed every minute.

Request

Subscribe Request
{
  "action":"subscribe",
  "args":["futures/fundingRate:BTCUSDT"]
}
Funding rate data Request
{ 
  "action": "request", 
  "args":["futures/fundingRate:BTCUSDT"]
}
Message Format: {"action": "<op>", "args": ["<channel:symbol>"]}
  • op: subscribe=Subscribe, You will receive a message that the subscription is successful, and then you will receive funding rate data pushed every minute. request=Single request for the latest funding rate data, You will receive a funding rate data immediately.
  • channel:Channel name, such asfutures/fundingRate
  • symbol: Trading pair, such asBTCUSDT

Response

Funding rate data
{
    "data": {
        "symbol": "BTCUSDT",
        "fundingRate": "0.000098800809",
        "fundingTime": 1732525864000,
        "nextFundingRate": "0.0000947",
        "nextFundingTime": 1732550400000,
        "funding_upper_limit": "0.0375",
        "funding_lower_limit": "-0.0375",
        "ts": 1732525864601
    },
    "group": "futures/fundingRate:BTCUSDT"
}
Return data description:
FieldTypeDescription
symbolStringSymbol of the contract (like BTCUSDT)
fundingRateStringCurrent funding rate
fundingTimeLongFunding time of the upcoming settlement, Unix timestamp format in milliseconds
nextFundingRateStringForecasted funding rate for the next period
nextFundingTimeLongForecasted funding time for the next period, Unix timestamp format in milliseconds
funding_upper_limitStringThe upper limit of the predicted funding rate of the next cycle
funding_lower_limitStringThe lower limit of the predicted funding rate of the next cycle
tsLongData return time, Unix timestamp format in milliseconds