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

# List schedule runs

> List execution runs for a schedule

<ParamField path="schedule_id" type="integer" required>
  Schedule ID.
</ParamField>

## SDK

<CodeGroup>
  ```typescript TypeScript theme={null}
  const runs = await client.schedules.runs(id);
  ```

  ```python Python theme={null}
  runs = await client.schedules.runs(schedule_id)
  ```
</CodeGroup>
