# 0 9 * * 1

**At 09:00, on Monday**

- Expression: `0 9 * * 1`
- Timezone: UTC
- Frequency: approximately 4.3 runs per month (0.14/day)

## Fields

| Field | Value | Meaning |
| --- | --- | --- |
| Minute | `0` | At minute 0. |
| Hour | `9` | At 09:00. |
| Day of month | `*` | Every day of the month. |
| Month | `*` | Every month. |
| Day of week | `1` | On Monday. |

## Next runs (UTC)

- Mon, 2026-09-07, 09:00 — `2026-09-07T09:00:00.000Z`
- Mon, 2026-09-14, 09:00 — `2026-09-14T09:00:00.000Z`
- Mon, 2026-09-21, 09:00 — `2026-09-21T09:00:00.000Z`
- Mon, 2026-09-28, 09:00 — `2026-09-28T09:00:00.000Z`
- Mon, 2026-10-05, 09:00 — `2026-10-05T09:00:00.000Z`

## Warnings

### Interpreted in UTC (info)

A cron expression has no timezone of its own — the scheduler's zone decides when it fires. These times are computed in UTC. The same expression on a host in another zone runs at a different moment.

**Fix:** Set the schedule timezone explicitly (TZ= or CRON_TZ= in crontab, `timeZone` in Kubernetes, or the scheduler's own setting). Vercel Cron Jobs always run in UTC.

---

Canonical URL: https://crontoenglish.com/cron/every-monday-at-9am
JSON API: `GET https://crontoenglish.com/api/v1/explain?expression=...`
MCP endpoint: `https://crontoenglish.com/api/mcp`
