Cron expression to run every month (1st)
To schedule a job to run every month (1st), use this cron expression:
0 0 1 * *At 12:00 AM, on day 1 of the month
Next 5 runs (UTC)
| # | Run time (UTC) | When |
|---|---|---|
| 1 | Tue, Sep 1, 2026, 00:00:00 UTC | in 26d 15h |
| 2 | Thu, Oct 1, 2026, 00:00:00 UTC | in 56d 15h |
| 3 | Sun, Nov 1, 2026, 00:00:00 UTC | in 87d 15h |
| 4 | Tue, Dec 1, 2026, 00:00:00 UTC | in 117d 15h |
| 5 | Fri, Jan 1, 2027, 00:00:00 UTC | in 148d 15h |
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 hour
0 * * * *See the full breakdown on the 0 0 1 * * page.