📅 Cron Expression Explainer
Paste any cron expression to get a plain-English description and the next scheduled run times.
MinuteHourDayMonthWeekday
Common Presets
Cron Syntax Reference
A cron expression has 5 space-separated fields:
| Field | Allowed Values | Special Characters |
|---|---|---|
| Minute | 0–59 | * , - / |
| Hour | 0–23 | * , - / |
| Day of Month | 1–31 | * , - / |
| Month | 1–12 | * , - / |
| Day of Week | 0–7 (0 and 7 = Sunday) | * , - / |
* = every value , = list (e.g. 1,3,5) - = range (e.g. 1-5) / = step (e.g. */15)