Cron expression explainer & next-run calculator
Paste a cron expression to get a plain-English explanation and the exact next run times in any timezone. Build a schedule field by field — no guessing what 0 9 * * 1-5 means.
Common cron expressions
interval
daily
weekly
monthly
“Every X” quick answers
Run every minute
* * * * *Run every 5 minutes
*/5 * * * *Run every 10 minutes
*/10 * * * *Run every 15 minutes
*/15 * * * *Run every 30 minutes
*/30 * * * *Run every hour
0 * * * *Run every 2 hours
0 */2 * * *Run every 6 hours
0 */6 * * *Run every 12 hours
0 */12 * * *Run every day (at midnight)
0 0 * * *Run every weekday
0 0 * * 1-5Run every weekend
0 0 * * 6,0Run every week (Sunday)
0 0 * * 0Run every month (1st)
0 0 1 * *Run every year
0 0 1 1 *For developers
Validate and explain cron in code with the cron API, or read the cron expression guide. Batch validation is available as a paid endpoint for agents and CI.