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

> Returns the strategy's rebalance schedule.

Returns the *configured* rebalance cadence for this strategy. Every strategy
you create has a schedule (set at creation; updated via
`PUT /v2/strategies/{strategyId}/schedule`).

This endpoint returns config only (`type` + `frequency`). For runtime state
per portfolio — `nextDueAt`, `lastRebalanceAt`, and active/paused
`status` — read the `schedule` block on
`GET /v2/portfolios/{portfolioId}`.

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

Public strategies listed by
[List Discovery Strategies](/api-reference/endpoints/v2-discovery-strategies)
are also readable: `data` is the creator's cadence, or `null` when the
creator has no schedule configured. Anything else returns `404` — the API
does not leak the existence of strategies you don't own.

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

<ResponseExample>
  ```json Schedule theme={null}
  {
    "success": true,
    "data": {
      "type": "interval",
      "frequency": "daily"
    }
  }
  ```

  ```json Public strategy without a schedule theme={null}
  {
    "success": true,
    "data": null
  }
  ```
</ResponseExample>
