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

# Get Monitoring Schedule

> When the automatic competitor scan runs, and whether it is enabled

Read the automatic competitor-scan schedule and whether it is on.

`cadence` is always `weekly` — see [the PUT](/api-reference/update-monitoring-schedule) for why. `last_run_at` is the last time the schedule fired, absent if it never has.

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.clustr-ai.com/api/public/competitor-monitoring/schedule \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```python Python theme={null}
  import requests

  requests.get(
      "https://api.clustr-ai.com/api/public/competitor-monitoring/schedule",
      headers={"Authorization": "Bearer YOUR_API_KEY"},
  )
  ```

  ```javascript JavaScript theme={null}
  await fetch("https://api.clustr-ai.com/api/public/competitor-monitoring/schedule", {
    headers: { Authorization: "Bearer YOUR_API_KEY" },
  });
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "feature_key": "competitor_monitoring",
      "enabled": true,
      "schedule": {
        "cadence": "weekly",
        "day_of_week": 1,
        "day_of_month": 1,
        "hour": 9,
        "minute": 0,
        "timezone": "Europe/Paris"
      },
      "last_run_at": "2026-07-27T07:00:02Z"
    }
  }
  ```
</ResponseExample>
