Cron Expression: At 5 minutes past every hour (e.g. 1:05, 2:05)
Cron Expression
5 * * * *At 5 minutes past every hour (e.g. 1:05, 2:05)
Click the expression to select it, then copy.
Quick Answer
The cron expression for "at 5 minutes past every hour (e.g. 1:05, 2:05)" is `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 | At minute 5 |
| Hour | * | Every hour |
| Day of Month | * | Every day of month |
| Month | * | Every month |
| Day of Week | * | Every day of week |
Common Use Cases
- →Staggered hourly jobs
- →Offset from top-of-hour tasks
- →Post-hour processing
How to Use This Expression
Vercel Cron Jobs
// vercel.json
{
"crons": [{
"path": "/api/your-endpoint",
"schedule": "5 * * * *"
}]
}GitHub Actions
# .github/workflows/scheduled.yml
on:
schedule:
- cron: '5 * * * *'Linux crontab
5 * * * * /path/to/your-command.sh