> ## 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.

# 查询用户交易费率 (KEYED)

`适用于查询用户交易费率`

#### 请求URL

`GET https://cloud-api.wooxpro.com/contract/private/trade-fee-rate`

#### 请求限制

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

#### 请求参数

> 请求

```shell theme={null}
curl -H 'X-API-KEY:{{AccessKey}}'
https://cloud-api.wooxpro.com/contract/private/trade-fee-rate?symbol=BTCUSDT
```

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

#### 响应详情

> 响应

```json theme={null}
{
  "code": 1000,
  "message": "Ok",
  "data": {
    "symbol": "BTCUSDT",
    "taker_fee_rate": "0.0006",
    "maker_fee_rate": "0.0002"
  },
  "trace": "638d5048-ad21-4a4b-1234-d0756fbfc7ba"
}
```

| 字段               | 类型     | 描述                     |
| :--------------- | :----- | :--------------------- |
| symbol           | String | Symbol of the contract |
| taker\_fee\_rate | String | Taker fee rate         |
| maker\_fee\_rate | String | Maker fee rate         |
