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

> Returns the tenant's stored preference defaults.

Returns the tenant's stored preference defaults. Swap settings live under the
`swap` namespace: `slippageBps`, `priceImpactBps`, and `thresholdUsd`
(minimum swap size in USD).

Each field is returned as `null` when not configured for this tenant.

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

Schedule is per-strategy — see
[`GET /v2/strategies/{strategyId}/schedule`](/api-reference/endpoints/v2-get-strategy-schedule).

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

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

<ResponseExample>
  ```json Configured theme={null}
  {
    "success": true,
    "data": {
      "swap": {
        "slippageBps": 300,
        "priceImpactBps": 250,
        "thresholdUsd": "5.00"
      }
    }
  }
  ```

  ```json No preferences set theme={null}
  {
    "success": true,
    "data": {
      "swap": {
        "slippageBps": null,
        "priceImpactBps": null,
        "thresholdUsd": null
      }
    }
  }
  ```
</ResponseExample>
