Every 10 Minutes Cron Expression
Runs six times per hour: minutes 0, 10, 20, 30, 40, 50.
Expression
*/10 * * * *Try it in the tester →Field Breakdown
*/10
minute
*
hour
*
day-of-month
*
month
*
day-of-week
minuteevery 10 minutes, starting at 0
hourevery hour (0–23)
day-of-monthevery day (1–31)
monthevery month (1–12)
day-of-weekevery weekday (0=Sun – 6=Sat)
How It Works
Step value `*/10` matches every minute that is divisible by 10, so the job runs six times per hour.
Example Run Times
- 12:00:00
- 12:10:00
- 12:20:00
- 12:30:00
- 12:40:00
Frequently Asked Questions
How many times does this run per day?
144 times — 6 runs per hour × 24 hours.