Run a job every 15 minutes
Use */15 * * * * to fire at minutes 0, 15, 30, and 45 of every hour. A good default for moderate-frequency sync jobs.
Related schedules
- Every 5 minutes:
*/5 * * * * - Every 30 minutes:
*/30 * * * * - Every hour:
0 * * * *
Cron expression to run every 15 minutes: */15 * * * *. Explain, preview next runs, export for K8s or GitHub Actions.
Paste a cron → plain English + next runs. Everything stays in your browser.
5-field: min hour dom month dow
Plain English
Every 15 minutes, every hour, every day
*/15 * * * *Use */15 * * * * to fire at minutes 0, 15, 30, and 45 of every hour. A good default for moderate-frequency sync jobs.
*/5 * * * **/30 * * * *0 * * * *