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 | Wed, Jul 1, 2026, 00:00:00 UTC | in 11d 9h |
| 2 | Sat, Aug 1, 2026, 00:00:00 UTC | in 42d 9h |
| 3 | Tue, Sep 1, 2026, 00:00:00 UTC | in 73d 9h |
| 4 | Thu, Oct 1, 2026, 00:00:00 UTC | in 103d 9h |
| 5 | Sun, Nov 1, 2026, 00:00:00 UTC | in 134d 9h |
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.