获取当前资金费率
- GET /capi/v2/market/currentFundRate
权重(IP): 1
请求参数
| 参数名 | 类型 | 是否必填 | 说明 | 
|---|---|---|---|
| symbol | String | 否 | 交易对 | 
请求示例
curl "https://api-contract.weex.com/capi/v2/market/currentFundRate?symbol=cmt_bchusdt"
返回参数
| 参数名 | 类型 | 说明 | 
|---|---|---|
| symbol | string | 交易对 | 
| fundingRate | string | 资金费率 | 
| collectCycle | long | 资金费率结算周期 | 
返回示例
[
  {
    "baseCurrency": null,
    "symbol": "cmt_btcusdt",
    "fundingRate": "-0.0001036",
    "collectCycle": 480,
    "timestamp": 1750383726052
  }
]