> For the complete documentation index, see [llms.txt](https://pacifica.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pacifica.gitbook.io/docs/api-documentation/api/rest-api/markets/get-fee-levels.md).

# Get fee levels

```
GET /api/v1/info/fees
```

#### Response

* Status 200: Success

```json
{
  "success": true,
  "data": [
    {
      "level": 0,
      "maker_fee_rate": "0.00020",
      "taker_fee_rate": "0.00050"
    },
    {
      "level": 1,
      "maker_fee_rate": "0.00015",
      "taker_fee_rate": "0.00040"
    }
  ],
  "error": null,
  "code": null
}
```

<table><thead><tr><th width="208">Field</th><th width="186">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>"level"</code></td><td>integer</td><td>Fee tier level</td></tr><tr><td><code>"maker_fee_rate"</code></td><td>decimal string</td><td>Maker fee rate for this tier</td></tr><tr><td><code>"taker_fee_rate"</code></td><td>decimal string</td><td>Taker fee rate for this tier</td></tr></tbody></table>

* Status 500: Internal server error

#### Code Example (Python)

```python
import requests

response = requests.get(
    "/api/v1/info/fees",
    headers={"Accept": "*/*"},
)

data = response.json()
```
