Current Funding Rate
Get Current Funding Rate
Get current contract trading pair funding rate
Request frequency limit: 1/1s
Request URL
GET /deepcoin/trade/fund-rate/current-funding-rate
Request Parameters
| Field Name | Required | Type | Description |
|---|---|---|---|
| instType | true | string | Contract type USDT-margined: SwapUCoin-margined: Swap |
| instId | false | string | Query specific trading pair funding rate if not empty, query all if empty |
Response Parameters
| Field Name | Type | Description |
|---|---|---|
| >current_fund_rates | object | |
| >instrumentID | string | Trading pair |
| >fundingRate | float64 | Funding fee rate |
Response Example
{
"code": "0",
"msg": "",
"data": {
"current_fund_rates":[
{
"instrumentId":"BTCUSD",
"fundingRate":0.00011794
}
]
}
}