Cron Every Minute

* * * * *

Every minute

Next 10 Executions

Times shown in UTC

  • Mon, May 18, 202608:10
  • Mon, May 18, 202608:11
  • Mon, May 18, 202608:12
  • Mon, May 18, 202608:13
  • Mon, May 18, 202608:14
  • Mon, May 18, 202608:15
  • Mon, May 18, 202608:16
  • Mon, May 18, 202608:17
  • Mon, May 18, 202608:18
  • Mon, May 18, 202608:19

Field Breakdown

*
Minute
Every minute
*
Hour
Every hour
*
Day of Month
Every day
*
Month
Every month
*
Day of Week
Every day of week

About This Schedule

The cron expression * * * * * is the simplest possible schedule — it triggers a job every single minute, 24 hours a day, 7 days a week. Each asterisk represents a wildcard for one of the five cron fields: minute, hour, day of month, month, and day of week.

This is commonly used for health checks, queue processing, real-time data syncing, and monitoring scripts that need to run continuously. Because it fires 1,440 times per day, make sure your job completes in well under 60 seconds to avoid overlapping executions.

If every minute is too frequent, consider */5 * * * * (every 5 minutes) or */15 * * * * (every 15 minutes) for less intensive polling.

Frequently Asked Questions