What */15 * * * * does
The */15 in the minute field is a step value. It means 'starting at minute 0, then every 15 minutes'. The four remaining asterisks mean every hour, every day of the month, every month and every day of the week — so the job runs continuously, all year.
Within any given hour it fires at :00, :15, :30, :45, giving 4 runs per hour and 96 per day.
The mistake people make
Dropping the */ changes the meaning completely. 15 * * * * runs once an hour, at minute 15 — not every 15 minutes. The slash is what turns a value into an interval.
Every 15 minutes is the standard quarter-hour sync interval, common for ETL and cache warming.
Frequently asked questions
What is the cron expression for every 15 minutes?
*/15 * * * *. The */15 step in the minute field fires the job every 15 minutes, starting at minute 0 of each hour.
How many times does */15 * * * * run per day?
96 times — 4 per hour, 24 hours a day.
Related cron expressions
Browse the full cron expression reference, or build your own expression from scratch.