Skip to main content
GET
/
v2
/
strategies
/
{strategyId}
/
preferences
curl --request GET \
  --url 'https://api.glider.fi/v2/strategies/01JWZEE2MF30KVRMRX53N88VA4/preferences' \
  --header 'x-api-key: gldr_sk_your_api_key'
{
  "success": true,
  "data": {
    "swap": {
      "slippageBps": 250,
      "priceImpactBps": null,
      "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 strategy’s stored preference overrides. Swap settings live under the swap namespace: slippageBps, priceImpactBps, and thresholdUsd. Each field is null when no override is set on this strategy. The strategy’s schedule is mutated through PUT /v2/strategies/{strategyId}/schedule and is not returned by this endpoint.
  • Auth: x-api-key header (required)
  • Required scope: strategies:read
Cross-tenant access returns 404 — the API does not leak the existence of strategies you don’t own.
curl --request GET \
  --url 'https://api.glider.fi/v2/strategies/01JWZEE2MF30KVRMRX53N88VA4/preferences' \
  --header 'x-api-key: gldr_sk_your_api_key'
{
  "success": true,
  "data": {
    "swap": {
      "slippageBps": 250,
      "priceImpactBps": null,
      "thresholdUsd": "5.00"
    }
  }
}