Cron Parser

Visualize a Cron expression and preview the next run times.

Minute
*/5
Hour
*
Day
*
Month
*
Weekday
*
Private & SecureRuns in your browser — nothing is uploaded
Easy to UseJust paste or type — instant results
Free ForeverUnlimited use, no sign-up
Fast & ReliableAdvanced tech, fast and stable

Cron syntax is five small fields, and it is easy to get one subtly wrong, then wonder for weeks why a job never fired. Paste an expression and this spells out in plain words when it runs and lists the next few run times, so you can confirm the schedule before you ship it.

0 9 * * 1
Expression → next runs

How to use: Cron Parser

  1. 1Enter inputEnter a cron expression (the five fields: minute, hour, day, month, weekday).
  2. 2Set optionsThe tool explains what the expression means in plain English.
  3. 3ProcessPreview the next several upcoming run times it will trigger.
  4. 4Get resultOnce it looks right, copy the expression into your scheduler config.

Common use cases

Check a scheduleConfirm a job really fires when you mean it to, not an hour or a day off.
Learn the fieldsSee how each field maps to minute, hour, day, month and weekday while you edit.
Plan around jobsRead the next run times so you do not deploy right on top of a scheduled task.
Document an expressionTurn a cryptic line into a sentence for a runbook or a code comment.

Good to know

Five fields, in orderMinute, hour, day of month, month, day of week. A classic mistake is mixing up day of month and day of week.
Steps, ranges and listsA slash sets a step like every 15 minutes, a dash sets a range, and a comma lists separate values.
It runs in the server timezoneCron fires on the host clock, so the next runs shown may not match your local time. Mind the offset.
Five fields, not sixStandard cron has five fields; some platforms add a seconds field at the front, so check which form yours expects.

Frequently Asked Questions