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

# Get Fee Levels

> This endpoint returns all fee level tiers and their corresponding maker and taker fee rates.

```http theme={null}
GET /api/v1/info/fees
```

#### Response

* Status 200: Success

```json theme={null}
{
  "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 theme={null}
import requests

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

data = response.json()
```
