> ## Documentation Index
> Fetch the complete documentation index at: https://docs.shiftsheet.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List Schedules

> Retrieve a list of work schedules configured for your company.

### Query Parameters

<ParamField query="type" type="string">
  Filter schedules by their type (e.g., `FIXED`, `FLEXIBLE`, `ROTATING`).
</ParamField>

<ParamField query="isActive" type="boolean">
  Filter active vs inactive schedules. Defaults to `true`.
</ParamField>

### Response

<ResponseExample>
  ```json theme={null}
  {
    "data": [
      {
        "id": "sch_123...",
        "name": "Standard Mon-Fri (9-5)",
        "type": "FIXED",
        "isActive": true,
        "pattern": {
          "monday": { "start": "09:00", "end": "17:00" },
          "tuesday": { "start": "09:00", "end": "17:00" }
        }
      }
    ]
  }
  ```
</ResponseExample>
