Cron expressions / Every N minutes
Every 1 minute
* * * * * Every minute
Next 5 run times
| # | Run time (UTC) |
|---|---|
| 1 | Sun, Aug 2, 2026, 12:01 AM |
| 2 | Sun, Aug 2, 2026, 12:02 AM |
| 3 | Sun, Aug 2, 2026, 12:03 AM |
| 4 | Sun, Aug 2, 2026, 12:04 AM |
| 5 | Sun, Aug 2, 2026, 12:05 AM |
Computed from a fixed reference date so this table is stable across visits. Paste this expression into the cron parser tool for live run times from right now.
Commonly used for
The tightest interval standard cron supports. Used for near-real-time polling — queue consumers, log shippers, sync daemons — where the job itself is cheap and idempotent. At this frequency, prefer a long-running process or a scheduler with sub-minute resolution if the job has any real startup cost.