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 | Sun, Sep 20, 2026, 05:00:00 UTC | in 17 min |
| 2 | Sun, Sep 20, 2026, 06:00:00 UTC | in 1h 17m |
| 3 | Sun, Sep 20, 2026, 07:00:00 UTC | in 2h 17m |
| 4 | Sun, Sep 20, 2026, 08:00:00 UTC | in 3h 17m |
| 5 | Sun, Sep 20, 2026, 09:00:00 UTC | in 4h 17m |
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.