Skip to main content
GET
/
v2
/
tenant
/
preferences
curl --request GET \
  --url 'https://api.glider.fi/v2/tenant/preferences' \
  --header 'x-api-key: gldr_sk_your_api_key'
{
  "success": true,
  "data": {
    "swap": {
      "slippageBps": 300,
      "priceImpactBps": 250,
      "thresholdUsd": "5.00"
    }
  }
}

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.

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.
curl --request GET \
  --url 'https://api.glider.fi/v2/tenant/preferences' \
  --header 'x-api-key: gldr_sk_your_api_key'
{
  "success": true,
  "data": {
    "swap": {
      "slippageBps": 300,
      "priceImpactBps": 250,
      "thresholdUsd": "5.00"
    }
  }
}