Get Current Funding Rate
Description
Retrieve the current funding rate of the contract.
HTTP Request
GET /v3/market/fundingRate
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
symbol | Yes | String | A trading pair |
Response Parameters
Parameter | Type | Description |
---|---|---|
s | String | A trading pair, consisting of two currencies: base currency and quote currency |
fR | String | Current funding rate. When positive, longs pay shorts; when negative, shorts pay longs. |
fT | Long | The current funding rate is settled in UTC time |
nFR | String | The predicted funding rate is the current estimate of what the funding rate will be at the end of the current funding period. |
nFT | Long | Forecasted funding time for the next period, Unix timestamp format in milliseconds. |
Request Example
{
"symbol": "BTC_USDT_PERP"
}
Response Example
{
"code": 200,
"msg": "Success",
"data": {
"s": "BTC_USDT_PERP",
"fR": 0.01875,
"fT": 1717048380000,
"nFR": 0.01889,
"nFT": 1717048400000
}
}