Cron expression for every 15 minutes
Every 15 minutes
Every 15 minutes
Try this expression in the interactive tool:
Open in cron explainer →Next 10 scheduled runs
Common use cases
Every 15 minutes is the sweet spot for many business-facing integrations. It runs 96 times per day — frequent enough to feel responsive, infrequent enough to avoid hammering APIs or databases.
Salesforce, HubSpot, and other CRM integrations commonly use this interval for bidirectional data sync. A 15-minute lag between a deal closing in the CRM and appearing in the analytics dashboard is acceptable for most sales teams.
This interval is also widely used for social media scheduling tools, RSS feed checkers, and inventory sync between e-commerce platforms and warehouse management systems.
Platform-specific syntax
*/15 * * * * /path/to/script.shrate(15 minutes)schedule:
- cron: '*/15 * * * *'schedule: "*/15 * * * *"Technical breakdown
The expression */15 * * * * has five fields: minute=*/15, hour=*, day (month)=*, month=*, day (week)=*. Every 15 minutes.