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

# Get Trade Fee Rate (KEYED)

`Applicable for querying trade fee rate`

#### Request URL

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

#### Request Limit

See [Detailed Rate Limit](/english/rate-limit)

#### Request Parameter

> Request

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

| Field  | Type   | Required? | Description                          |
| :----- | :----- | :-------- | :----------------------------------- |
| symbol | String | Yes       | Symbol of the contract(like BTCUSDT) |

#### Response Data

> Response

```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"
}
```

| Field            | Type   | Description            |
| :--------------- | :----- | :--------------------- |
| symbol           | String | Symbol of the contract |
| taker\_fee\_rate | String | Taker fee rate         |
| maker\_fee\_rate | String | Maker fee rate         |
