Cron Expression Generator
Build any cron schedule visually and get the correct expression instantly

*/15 * * * *Build cron expressions visually without memorising the syntax. Select your schedule (every 5 minutes, every Monday at 9am, the first day of each month) and get the correct cron string ready to paste into your server, Make scenario, or CI/CD pipeline.
Cron Expression Format
A cron expression has five fields:
* * * * *
│ │ │ │ └── Day of week (0-7, 0 and 7 = Sunday)
│ │ │ └──── Month (1-12)
│ │ └────── Day of month (1-31)
│ └──────── Hour (0-23)
└────────── Minute (0-59)Common Cron Examples
| Schedule | Cron Expression |
|---|---|
| Every minute | * * * * * |
| Every 5 minutes | */5 * * * * |
| Every day at 9am | 0 9 * * * |
| Every Monday at 9am | 0 9 * * 1 |
| First day of month at midnight | 0 0 1 * * |
| Every weekday at 8am | 0 8 * * 1-5 |
| Every 6 hours | 0 */6 * * * |
Where Cron Expressions Are Used
- Linux/Unix — crontab for scheduled scripts
- GitHub Actions —
schedule.cronin workflow YAML - AWS Lambda — EventBridge scheduled rules
- Make/n8n — scenario scheduling
- Kubernetes — CronJob resources
- Heroku/Railway — scheduler add-ons
This comes up regularly in n8n and Make.com scheduled scenarios — n8n Self-Hosted Setup covers setting up scheduled backup jobs on your own instance, and Make.com Data Store Tutorial covers building scheduled sync jobs that track their own last-run timestamp.
Beyond Scheduling
Cron is great for simple recurring tasks. For complex workflows with conditions, retries, and dependencies, consider a dedicated scheduler like Temporal, Celery Beat, or a cron-triggered automation in Make. Book a consultation if your scheduled jobs are getting complex.

Want this built against your real numbers?
A 30-minute call to scope the workflow, agent, or automation you actually need.
More developer tools
All tools.env Manager
Validate, compare, and generate templates for your .env files — without exposing secrets
.gitignore Generator
Generate a complete .gitignore for any stack — languages, frameworks, and IDEs covered
API Mock Server
Create live mock API endpoints with custom JSON responses in under a minute
API Request Tester
Send HTTP requests to any API endpoint instantly — no install needed
Base64 Encoder/Decoder
Encode or decode any Base64 string instantly — no install, no login
Docker Compose Generator
Build a complete docker-compose.yml for any stack in seconds — with health checks included
Have a workflow that's burning hours every week?
Bring me one real bottleneck. I'll tell you whether it's worth automating, and what it would take.