Cron expression to run every hour
To schedule a job to run every hour, use this cron expression:
0 * * * *Every hour
Next 5 runs (UTC)
| # | Run time (UTC) | When |
|---|---|---|
| 1 | Wed, Aug 5, 2026, 01:00:00 UTC | in 38 min |
| 2 | Wed, Aug 5, 2026, 02:00:00 UTC | in 1h 38m |
| 3 | Wed, Aug 5, 2026, 03:00:00 UTC | in 2h 38m |
| 4 | Wed, Aug 5, 2026, 04:00:00 UTC | in 3h 38m |
| 5 | Wed, Aug 5, 2026, 05:00:00 UTC | in 4h 38m |
Adjust it
Other common schedules
Run every minute
* * * * *Run every 5 minutes
*/5 * * * *Run every 10 minutes
*/10 * * * *Run every 15 minutes
*/15 * * * *Run every 30 minutes
*/30 * * * *Run every 2 hours
0 */2 * * *See the full breakdown on the 0 * * * * page.