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