Cron for every Friday at 5pm
Once a week, Friday at 17:00, for end-of-week jobs.
0 17 * * 5
At 17:00, on Friday
Interpreted in UTC · approximately 4.3 runs per month
Things to check
Note
Interpreted in UTC
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.
Fields
- Minute
0 - At minute 0.
- Hour
17 - At 17:00.
- Day of month
* - Every day of the month.
- Month
* - Every month.
- Day of week
5 - On Friday.
Next runs
- Fri, 2026-09-04, 17:00
- Fri, 2026-09-11, 17:00
- Fri, 2026-09-18, 17:00
- Fri, 2026-09-25, 17:00
- Fri, 2026-10-02, 17:00
- Fri, 2026-10-09, 17:00
- Fri, 2026-10-16, 17:00
- Fri, 2026-10-23, 17:00
Try a different expression or timezone
Times above are in UTC. Pick a timezone here to see this schedule in local time.
Call this from code or an agent
curl 'https://crontoenglish.com/api/v1/explain?expression=0%2017%20*%20*%205'