Reach for it when scheduling backups, cleanup jobs, cron triggers in GitHub Actions / GitLab CI / Vercel Cron, or systemd timers. Cron syntax is famously easy to get wrong — the visual builder + next-runs preview catches the most common mistakes. Alternative: crontab.guru is the classic web reference; this tool adds a build-from-scratch UI and the next-runs preview.
Common cron expressions:
0 0 * * * — every day at midnight
*/15 * * * * — every 15 minutes
0 9 * * 1-5 — weekdays at 9 AM
30 3 1 * * — 3:30 AM on the 1st of every month
0 */6 * * * — every 6 hoursLast updated: 2026-04-27