Cron Expression Parser
Translate cron expressions into plain English — with a library of common examples.
About this tool
The Cron Parser translates standard 5-field cron expressions (minute, hour, day-of-month, month, day-of-week) into a plain-English description of when the job will run. It supports wildcards (*), step values (*/15), ranges (1-5), and lists (1,3,5).
Cron is the Unix standard for scheduled jobs. It is used by GitHub Actions (schedule trigger), AWS EventBridge Scheduler, Kubernetes CronJob, Linux crontab, Heroku Scheduler, and virtually every cloud platform's task runner. Getting the syntax right is error-prone — this tool gives you instant feedback before you commit an expression to a configuration file.
A library of common expressions (every hour, daily at midnight, weekdays at 9am, every 15 minutes, monthly, and weekly) lets you start from a working baseline and modify from there. All parsing is done locally in the browser with zero network requests.