Cron Expression Examples

49 ready-to-use cron expressions with detailed explanations. Find the exact syntax for any schedule.

Quick Reference — Cron Format

*/5
Minute
(0-59)
9
Hour
(0-23)
1,15
Day
(1-31)
*/3
Month
(1-12)
1-5
Weekday
(0-6)

* = any  */N = every N  A,B = A and B  A-B = A through B

Interval Schedules

Run every X minutes or hours

* * * * *
Cron Job Every Minute

This cron expression runs the job once every minute, 24/7. Every field is set to * (wildcard), meani...

*/2 * * * *
Cron Job Every 2 Minutes

The */2 in the minute field means "every 2nd minute." The job runs at minutes 0, 2, 4, 6, ..., 58 of...

*/3 * * * *
Cron Job Every 3 Minutes

The */3 step value in the minute field triggers the job at minutes 0, 3, 6, 9, ..., 57 of every hour...

*/5 * * * *
Cron Job Every 5 Minutes

The */5 step value runs the job at minutes 0, 5, 10, 15, ..., 55. This is the most commonly used cro...

*/10 * * * *
Cron Job Every 10 Minutes

The */10 step value triggers execution at minutes 0, 10, 20, 30, 40, and 50 of every hour — 6 times ...

*/15 * * * *
Cron Job Every 15 Minutes

The */15 step value runs at minutes 0, 15, 30, and 45 of every hour — exactly 4 times per hour, 96 t...

*/20 * * * *
Cron Job Every 20 Minutes

The */20 step value triggers at minutes 0, 20, and 40 of every hour — 3 executions per hour....

*/30 * * * *
Cron Job Every 30 Minutes

The */30 step value runs at the top and bottom of every hour (minutes 0 and 30) — twice per hour....

0,45 * * * *
Cron Job Every 45 Minutes

There's no clean step value for 45 minutes since 60 is not divisible by 45. Use 0,45 * * * * to run ...

0 * * * *
Cron Job Every Hour

Setting the minute field to 0 and all others to * runs the job at minute 0 of every hour — exactly 2...

0 */2 * * *
Cron Job Every 2 Hours

The */2 step in the hour field triggers at hours 0, 2, 4, 6, ..., 22. Combined with minute 0, it run...

0 */3 * * *
Cron Job Every 3 Hours

The */3 step in the hour field triggers at hours 0, 3, 6, 9, 12, 15, 18, and 21 — 8 times per day....

0 */4 * * *
Cron Job Every 4 Hours

Triggers at hours 0, 4, 8, 12, 16, and 20 — exactly 6 times per day....

0 */6 * * *
Cron Job Every 6 Hours

The */6 step runs at hours 0, 6, 12, and 18. Combined with minute 0, it executes 4 times per day....

0 */8 * * *
Cron Job Every 8 Hours

Triggers at hours 0, 8, and 16 — three times per day, roughly aligned with work shifts....

0 0,12 * * *
Cron Job Every 12 Hours

Using 0,12 in the hour field runs at midnight (00:00) and noon (12:00) — twice per day....

Automate Any Cron Schedule

CronJobPro schedules HTTP requests using these cron expressions — with monitoring, retries, notifications, and a visual dashboard. No server required.