> ## 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-history`

#### 请求限制

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

#### 请求参数

> 请求

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

| 参数     | 类型     | 是否必填 | 描述                   |
| :----- | :----- | :--- | :------------------- |
| symbol | String | 必填   | 合约交易对（如BTCUSDT）      |
| limit  | String | 选填   | 每页返回条数，最大100条，默认100条 |

#### 响应详情

> 响应

```json theme={null}
{
  "code": 1000,
  "message": "Ok",
  "data": {
    "list": [
      {
        "symbol": "BTCUSDT",
        "funding_rate": "0.000090600584",
        "funding_time": "1733979600000"
      }
    ]
  },
  "trace": "4b588ac6b7cb11ef96b16280797cd561.3819021.39457365988950452"
}
```

| 字段   | 类型   | 描述     |
| :--- | :--- | :----- |
| list | list | 列表详情数组 |

列表详情字段描述:

| 字段            | 类型     | 描述   |
| :------------ | :----- | :--- |
| symbol        | String | 合约名称 |
| funding\_rate | String | 资金费率 |
| funding\_time | String | 结算时间 |
