Cron Expression Generator
Build a cron expression visually. Preview the next scheduled runs, copy the expression, and deploy it with TrigRun in seconds.
Generated Expression
0 * * * *
Every hour
| Field | Value | Meaning |
|---|---|---|
| Minute | 0 | 0 |
| Hour | * | every hour |
| Day | * | every day of month |
| Month | * | every month |
| Weekday | * | every day of week |
Next 5 Scheduled Runs
Computing...
Times shown in UTC
Deploy this schedule with TrigRun
Automatic retries, encrypted secrets, full execution history, and native MCP support for AI agents.
Start Scheduling — Free0 * * * *
Cron Expression Syntax
A cron expression is a string of five fields separated by spaces. Each field represents a unit of time and determines when the job should run.
*
*
*
*
*
Minute
(0-59)
(0-59)
Hour
(0-23)
(0-23)
Day of Month
(1-31)
(1-31)
Month
(1-12)
(1-12)
Day of Week
(0-7)
(0-7)
Special Characters
| Character | Meaning | Example |
|---|---|---|
| * | Any value (wildcard) | * * * * * — every minute |
| , | List of values | 1,15 — on the 1st and 15th |
| - | Range of values | 1-5 — Monday through Friday |
| / | Step values | */10 — every 10th unit |