Cron expression for every 3 minutes

The cron expression to run a job every 3 minutes is */3 * * * *. See the next run times in your timezone.

*/3minute
*hour
*day
*month
*weekday

In Plain English

What your cron expression actually means.

Every 3 minutes, every hour, every day

Upcoming Executions

Preview the next 50 times this schedule will trigger.

Calculating…

About */3 * * * *

*/3 * * * * runs a job every 3 minutes, on the minute. Because 3 divides 60 evenly, the spacing stays consistent across every hour boundary.

Cron reads the five fields as minute hour day month weekday. For this schedule that breaks down as:

  • */3 minute
  • * hour (every value)
  • * day of month (every value)
  • * month (every value)
  • * day of week (every value)

Repeating intervals

Build a custom cron expression →