Run a Cron Job Every Sunday
Cron expression to run a job every Sunday at midnight. Day-of-week 0 (or 7) represents Sunday.
Cron Expression
0 0 * * 0
Every Sunday at 12:00 AM
Field-by-Field Breakdown
| Field | Value | Meaning |
|---|---|---|
| Minute | 0 | 0 |
| Hour | 0 | 0 |
| Day of Month | * | every day of month |
| Month | * | every month |
| Day of Week | 0 | Sunday |
Next 5 Scheduled Runs
Computed in UTC. Use the generator for timezone-aware results.
- 1Sun, Mar 22, 2026, 12:00 AM
- 2Sun, Mar 29, 2026, 12:00 AM
- 3Sun, Apr 5, 2026, 12:00 AM
- 4Sun, Apr 12, 2026, 12:00 AM
- 5Sun, Apr 19, 2026, 12:00 AM
Schedule this with TrigRun
Deploy this cron schedule in seconds. Automatic retries, encrypted secrets, full execution history, and native MCP support for AI agents.
Start Scheduling — Free0 0 * * 0
Frequently Asked Questions
What is the cron expression for every Sunday?
0 0 * * 0 runs at midnight every Sunday. Both 0 and 7 represent Sunday in standard cron.