Cron Expression: Every day at 9:30 AM
Cron Expression
30 9 * * *Every day at 9:30 AM
Click the expression to select it, then copy.
Quick Answer
The cron expression for "every day at 9:30 am" is `30 9 * * *`. 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 | 30 | At minute 30 |
| Hour | 9 | At hour 9 |
| Day of Month | * | Every day of month |
| Month | * | Every month |
| Day of Week | * | Every day of week |
Common Use Cases
- →Mid-morning sync
- →Post-standup data refresh
- →Late morning reports
How to Use This Expression
Vercel Cron Jobs
// vercel.json
{
"crons": [{
"path": "/api/your-endpoint",
"schedule": "30 9 * * *"
}]
}GitHub Actions
# .github/workflows/scheduled.yml
on:
schedule:
- cron: '30 9 * * *'Linux crontab
30 9 * * * /path/to/your-command.sh