Run a Cron Job on the 1st of Every Month
Cron expression to run a job on the first day of every month at midnight.
Cron Expression
0 0 1 * *
1st of every month at 12:00 AM
Field-by-Field Breakdown
| Field | Value | Meaning |
|---|---|---|
| Minute | 0 | 0 |
| Hour | 0 | 0 |
| Day of Month | 1 | 1 |
| Month | * | every month |
| Day of Week | * | every day of week |
Next 5 Scheduled Runs
Computed in UTC. Use the generator for timezone-aware results.
- 1Wed, Apr 1, 2026, 12:00 AM
- 2Fri, May 1, 2026, 12:00 AM
- 3Mon, Jun 1, 2026, 12:00 AM
- 4Wed, Jul 1, 2026, 12:00 AM
- 5Sat, Aug 1, 2026, 12:00 AM
Schedule this with TrigRun
Deploy this cron schedule in seconds. Automatic retries, encrypted secrets, full execution history, and native MCP support for AI agents.
Start Scheduling — Free0 0 1 * *
Frequently Asked Questions
What is the cron expression for the first of every month?
0 0 1 * * runs at midnight on the 1st day of every month.