Cron Expression Parser

Parse cron expressions and see the next 10 fire times. Standard 5-field crontab.

Enter input above to see the result.

What is this for?

Cron expressions are powerful and easy to mis-write. A single typo or misremembered syntax rule can cause a job to run at the wrong time, not at all, or far more often than intended. This tool validates 5-field crontab syntax, translates the expression into plain English, and previews the next 10 scheduled fire times so you can confirm the schedule before deploying to production.

When to use it

How it works

Cron field reference

FieldRangeWildcards
Minute0-59* · */5 · 0,30 · 0-29
Hour0-23same
Day of month1-31same
Month1-12same
Day of week0-6 (0 = Sunday, 7 also = Sunday)same

Common gotchas