Funding Rate
Get Funding Rate
Get the current funding rate, settlement interval, and next settlement time for contract trading pairs. Consolidates the funding-rate and fund-rate/current-funding-rate endpoints.
Request URL
GET /deepcoin/v2/market/funding-rate
Request Parameters (Query String)
| Field Name | Required | Type | Description |
|---|---|---|---|
| instId | false | string | Product ID. If omitted, returns funding rate for all contracts |
Request Example
// Query single product
GET /deepcoin/v2/market/funding-rate?instId=BTC-USDT-SWAP
// Query all
GET /deepcoin/v2/market/funding-rate
Response Parameters
Returns an array. Each item structure:
| Field Name | Type | Description |
|---|---|---|
| instId | string | Product ID |
| fundingRate | string | Current funding rate |
| settleInterval | int64 | Settlement interval (seconds) |
| nextSettleTime | int64 | Next settlement time (Unix timestamp) |
Response Example
[
{
"instId": "BTC-USDT-SWAP",
"fundingRate": "0.00011794",
"settleInterval": 28800,
"nextSettleTime": 1739289600
},
{
"instId": "ETH-USDT-SWAP",
"fundingRate": "0.00008231",
"settleInterval": 28800,
"nextSettleTime": 1739289600
}
]