> ## Documentation Index
> Fetch the complete documentation index at: https://developer.wooxpro.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 查询当前资金费率

`适用于查询指定合约当前资金费率`

#### 请求URL

`GET https://cloud-api.wooxpro.com/contract/public/funding-rate`

#### 请求限制

参见 [速率限制详细](/cn/rate-limit)

#### 请求参数

> 请求

```shell theme={null}
curl https://cloud-api.wooxpro.com/contract/public/funding-rate?symbol=BTCUSDT
```

| 参数     | 类型     | 是否必填 | 描述              |
| :----- | :----- | :--- | :-------------- |
| symbol | String | 必填   | 合约交易对（如BTCUSDT） |

#### 响应详情

> 响应

```json theme={null}
{
  "code": 1000,
  "message": "Ok",
  "data": {
    "timestamp": 1662518172178,
    "symbol": "BTCUSDT",
    "rate_value": "0.000164",
    "expected_rate": "0.000164",
    "funding_time": 1709971200000,
    "funding_upper_limit": "0.0375",
    "funding_lower_limit": "-0.0375"
  },
  "trace": "13f7fda9-9543-4e11-a0ba-cbe117989988"
}
```

| 字段                    | 类型     | 描述          |
| :-------------------- | :----- | :---------- |
| timestamp             | Long   | 时间戳         |
| symbol                | String | 合约名称        |
| rate\_value           | String | 上一期的资金费率    |
| expected\_rate        | String | 下一期的资金费率    |
| funding\_time         | Long   | 下次结算时间      |
| funding\_upper\_limit | Long   | 该交易对的资金费率上限 |
| funding\_lower\_limit | Long   | 该交易对的资金费率下限 |
