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

> Returns the authenticated tenant's strategy detail by ID.

Returns a single strategy belonging to the authenticated tenant, including its
allocation, rebalance schedule, swap preferences, and version number.

* Auth: `x-api-key` header (required)
* Scope: `strategies:read`

Allocation asset IDs are returned in CAIP-19 format. `schedule` and
`preferences` are omitted when not configured for the strategy.

<ParamField path="strategyId" type="string" required>
  Strategy identifier.
</ParamField>

Common error responses:

* `400` when the path parameter is invalid
* `401` when `x-api-key` header is missing or the key is invalid
* `403` when the API key lacks the `strategies:read` scope
* `404` when the strategy does not exist or does not belong to the tenant
* `500` on unexpected server errors

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

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "strategyId": "01JWZEE2MF30KVRMRX53N88VA4",
      "name": "Balanced Growth",
      "description": "Multi-chain balanced allocation strategy",
      "allocation": {
        "assets": [
          { "assetId": "eip155:1/erc20:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "weight": "60" },
          { "assetId": "eip155:1/erc20:0xdac17f958d2ee523a2206206994597c13d831ec7", "weight": "40" }
        ]
      },
      "schedule": {
        "type": "interval",
        "frequency": "daily"
      },
      "preferences": {
        "swap": {
          "slippageBps": 300,
          "priceImpactBps": null,
          "thresholdUsd": "5.00"
        }
      },
      "isPublic": false,
      "createdAt": "2026-03-31T12:00:00.000Z",
      "version": 3
    }
  }
  ```

  ```json 404 theme={null}
  {
    "success": false,
    "error": {
      "code": "API_404",
      "message": "Strategy not found: 01JWZEE2MF30KVRMRX53N88VA4"
    }
  }
  ```
</ResponseExample>
