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

# Get tenant fees

> Returns the tenant's integrator-fee defaults.

Returns the tenant's stored integrator swap-fee default. `swapBps` is the
basis-point fee charged on the output side of every swap; `null` when no
default is configured.

* Auth: `x-api-key` header (required)
* Required scope: `fees:read`

Per-strategy overrides live at
[`GET /v2/strategies/{strategyId}/fees`](/api-reference/endpoints/v2-get-strategy-fees).

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.glider.fi/v2/tenant/fees' \
    --header 'x-api-key: gldr_sk_your_api_key'
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch("https://api.glider.fi/v2/tenant/fees", {
    headers: { "x-api-key": "gldr_sk_your_api_key" },
  });
  const data = await response.json();
  ```
</RequestExample>

<ResponseExample>
  ```json Configured theme={null}
  {
    "success": true,
    "data": {
      "swapBps": 25
    }
  }
  ```

  ```json Not configured theme={null}
  {
    "success": true,
    "data": {
      "swapBps": null
    }
  }
  ```
</ResponseExample>
