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
FieldValueMeaning
Minute00
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 — Free

0 * * * *

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)
Hour
(0-23)
Day of Month
(1-31)
Month
(1-12)
Day of Week
(0-7)

Special Characters

CharacterMeaningExample
*Any value (wildcard)* * * * * — every minute
,List of values1,15 — on the 1st and 15th
-Range of values1-5 — Monday through Friday
/Step values*/10 — every 10th unit

Common Cron Expressions