⏱ Cron Expression Parser

Paste any cron expression and instantly see a plain-English description and the next 5 scheduled run times.

Free · No signup · Runs in your browser

🔍 Parse a cron expression

minutehourdaymonthweekday
Supports * / , - syntax. Examples:
*/5 * * * * 0 9 * * 1-5 0 0 1 * * 0 */6 * * * 30 4 1,15 * * 0 12 * * 0 @daily @hourly

📟 Get alerted when your cron jobs fail silently

CronWatch monitors scheduled jobs across every platform — Heroku Scheduler, GitHub Actions, crontab, AWS EventBridge — and alerts you the moment a job misses its window or errors.

Early access pricing · No spam

📖 Cron syntax quick reference

ExpressionDescription
* * * * *Every minute
*/15 * * * *Every 15 minutes
0 * * * *Every hour (on the hour)
0 9 * * *Every day at 9am
0 9 * * 1-59am on weekdays (Mon–Fri)
0 0 * * 0Midnight every Sunday
0 0 1 * *Midnight on the 1st of each month
0 0 1 1 *Midnight on January 1st
30 4 1,15 * *4:30am on the 1st and 15th
@hourlySame as 0 * * * *
@dailySame as 0 0 * * *
@weeklySame as 0 0 * * 0
@monthlySame as 0 0 1 * *
@yearlySame as 0 0 1 1 *

Field order: minute(0-59) hour(0-23) day(1-31) month(1-12) weekday(0-7, 0=Sunday)