Cron Expression: Every 5 minutes during business hours (9 AM–5 PM, weekdays)
Cron Expression
*/5 9-17 * * 1-5Every 5 minutes during business hours (9 AM–5 PM, weekdays)
Click the expression to select it, then copy.
Quick Answer
The cron expression for "every 5 minutes during business hours (9 am–5 pm, weekdays)" is `*/5 9-17 * * 1-5`. Copy and paste this into your crontab, Vercel cron config, GitHub Actions workflow, or any standard cron-compatible scheduler.
Field-by-Field Breakdown
| Field | Value | Meaning |
|---|---|---|
| Minute | */5 | Every 5 minute |
| Hour | 9-17 | Between hour range: 9-17 |
| Day of Month | * | Every day of month |
| Month | * | Every month |
| Day of Week | 1-5 | Between day of week range: 1-5 |
Common Use Cases
- →Business-hours uptime check
- →Peak hours monitoring
- →SLA compliance check
How to Use This Expression
Vercel Cron Jobs
// vercel.json
{
"crons": [{
"path": "/api/your-endpoint",
"schedule": "*/5 9-17 * * 1-5"
}]
}GitHub Actions
# .github/workflows/scheduled.yml
on:
schedule:
- cron: '*/5 9-17 * * 1-5'Linux crontab
*/5 9-17 * * 1-5 /path/to/your-command.sh