Run a Cron Job Every Minute
Need to execute a task every 60 seconds? The cron expression * * * * * is what you need. Test it in our interactive builder.
Next 5 Run Dates ()
What does * * * * * mean?
The cron expression * * * * * translates to Every minute.
Executing a job every single minute is the highest frequency allowed by standard cron implementations. This aggressive schedule is typically reserved for critical monitoring systems, heartbeat checks, or processing high-throughput queue messages where latency is unacceptable.