Cron Expression
Next 10 Execution Times
Enter a valid cron expression to see upcoming runs.
Common Presets
Visual Editor
0-59
0-23
1-31
1-12
0-6 (Sun=0)
Cron Syntax Reference
A cron expression consists of 5 fields separated by spaces:
minute hour day-of-month month day-of-week
| Field | Allowed Values | Description |
|---|---|---|
| Minute | 0-59 | Minute of the hour |
| Hour | 0-23 | Hour of the day (24h format) |
| Day of Month | 1-31 | Day of the month |
| Month | 1-12 | Month of the year |
| Day of Week | 0-6 | Day of the week (0 = Sunday) |
Special Characters
| Character | Meaning | Example |
|---|---|---|
* | Any value (wildcard) | * * * * * — every minute |
, | List separator | 1,15 * * * * — at minute 1 and 15 |
- | Range | * 9-17 * * * — hours 9 through 17 |
/ | Step / interval | */10 * * * * — every 10 minutes |