Build cron schedules with real validation and timezone preview
Most cron sites stop at a one-line explanation. This tool goes further: it validates each field, highlights standard cron OR behavior for day rules, and previews the next run times before you commit the schedule to a server, queue, or workflow runner.
Previewed upcoming executions from the current time in UTC.
Minute, hour, day of month, month, and day of week with steps, lists, and ranges.
Strong fit for tutorials around cron syntax, scheduling mistakes, and timezone debugging.
Expression
Edit the cron expression directly
Field order: minute hour day-of-month month day-of-week. Examples: 0 9 * * 1-5, */10 * * * *, 0 0 1 * *
If one day field is *, the other day field controls the schedule.
Preview
Check the next execution times
Based on current reference time Tue, Mar 31, 2026, 16:52.
Builder
Tune each cron field with a safer builder flow
Minute
Choose which minute marks can trigger the job.
Hour
Use 24-hour values such as 9, 14, or 18.
Day of month
Pick calendar dates such as 1, 15, or 28.
Month
Support numbers and aliases like JAN or SEP.
Day of week
Use 0 or SUN for Sunday, 1-5 for weekdays.
How it works
More useful than a plain cron cheat sheet
Build the five fields
Start with minute, hour, day of month, month, and day of week. Use wildcards, ranges, lists, and steps.
Validate the syntax
The parser highlights invalid ranges, unsupported tokens, and wrong field counts before you ship a broken schedule.
Preview the next runs
Check the upcoming execution times in your chosen timezone so you catch off-by-one-day and daylight-saving surprises.
FAQ
Cron details people still trip over
Does this tool use standard 5-field cron syntax?
Yes. It focuses on the common minute, hour, day-of-month, month, and day-of-week format used by Unix-style cron schedulers.
What happens if both day-of-month and day-of-week are restricted?
This tool follows standard cron OR behavior. If both fields are restricted, a run can match either the calendar date or the weekday.
Can I use month and weekday names?
Yes. You can use aliases like JAN, FEB, MON, and FRI in addition to numeric values.
Share this cron tool
This route includes its own Open Graph and Twitter metadata, so shares can show a dedicated cron card instead of the site default.
Next steps