Cron for every minute
The most frequent schedule standard cron can express. Useful for queue drains and health checks, and the fastest way to exhaust a hosted scheduler's invocation budget.
* * * * *
Every minute
Interpreted in UTC · approximately 1440 runs per day
Things to check
Note
Runs 1440 times per day
This is a high firing rate. Overlapping executions are likely if the job takes longer than the interval, and most hosted schedulers meter invocations.
Fix: Add a lock so runs cannot overlap, and confirm your platform allows this frequency (Vercel Hobby plans are limited to daily cron jobs).
Fields
- Minute
* - Every minute.
- Hour
* - Every hour.
- Day of month
* - Every day of the month.
- Month
* - Every month.
- Day of week
* - Every day of the week.
Next runs
- Wed, 2026-09-02, 15:51
- Wed, 2026-09-02, 15:52
- Wed, 2026-09-02, 15:53
- Wed, 2026-09-02, 15:54
- Wed, 2026-09-02, 15:55
- Wed, 2026-09-02, 15:56
- Wed, 2026-09-02, 15:57
- Wed, 2026-09-02, 15:58
Try a different expression or timezone
Times above are in UTC. Pick a timezone here to see this schedule in local time.
Call this from code or an agent
curl 'https://crontoenglish.com/api/v1/explain?expression=*%20*%20*%20*%20*'