Funding Rate
Get Funding Rate
Get contract trading pair funding rate settlement cycle
Request frequency limit: 1/1s
Request URL
GET /deepcoin/trade/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 cycle if not empty, query all if empty |
Response Parameters
| Field Name | Type | Description |
|---|---|---|
| data | array | |
| >settleInterval | integer | Funding fee interval |
| >instrumentID | string | Trading pair |
| >nextSettleTime | integer | Next settlement time |
Response Example
{
"code": "0",
"msg": "",
"data": [
{
"settleInterval": 28800,
"instrumentID": "1000BABYDOGEUSDT",
"nextSettleTime": 1739289600
},
{
"settleInterval": 14400,
"instrumentID": "1000CATUSDT",
"nextSettleTime": 1739275200
}
]
}