>_ CRON

⚡ runs locally
Cron expressions are the standard way to schedule recurring tasks on Unix-based systems, CI/CD pipelines, cloud functions, and job schedulers. The five-field format (minute, hour, day of month, month, day of week) is compact but can be tricky to read and write correctly. Our Cron Expression Tool translates cron syntax into plain English instantly, so you can verify your schedule before deploying. Type any cron expression to see a human-readable explanation and the next scheduled run times. Use the preset buttons for common schedules, or build custom expressions with the interactive field selector. The tool supports standard five-field cron syntax used by crontab, GitHub Actions, AWS CloudWatch, and most scheduling systems.
*
*
*
*
*

Next 10 Run Times

    Cron Expression Generator: Build and Decode Cron Schedules

    What Is a Cron Expression?

    A cron expression is a string of five (or six) fields that defines a recurring schedule. Originally created for the Unix cron daemon in the 1970s, this compact syntax has become the universal standard for scheduling recurring tasks. You will encounter cron expressions in Linux crontabs, CI/CD pipelines, cloud schedulers (AWS CloudWatch, Google Cloud Scheduler, Azure Functions), Kubernetes CronJobs, GitHub Actions, Cloudflare Workers Cron Triggers, and task runners across every platform. Each field represents a time unit: minute hour day-of-month month day-of-week.

    Cron Syntax Reference

    FieldAllowed ValuesSpecial Characters
    Minute0 to 59* , - /
    Hour0 to 23* , - /
    Day of Month1 to 31* , - /
    Month1 to 12* , - /
    Day of Week0 to 7 (0 and 7 = Sun)* , - /

    Special Characters Explained

    * matches every value in the field. , separates a list of values (e.g., 1,3,5 means the 1st, 3rd, and 5th). - defines a range (e.g., 1-5 means Monday through Friday). / defines a step interval (e.g., */5 in the minute field means every 5 minutes, and 10/15 means "starting at minute 10, then every 15 minutes").

    Common Cron Schedules Every Developer Should Know

    * * * * * runs every minute. Useful for health checks and queue workers, but be careful with resource-heavy tasks.

    */5 * * * * runs every 5 minutes. A good default for polling tasks, cache refreshes, and lightweight data syncing.

    0 * * * * runs at the top of every hour. Common for hourly reports, log rotation, and aggregation jobs.

    0 0 * * * runs at midnight every day. The standard for daily backups, cleanup scripts, and report generation.

    0 9 * * 1-5 runs at 9 AM on weekdays. Perfect for business-hours notifications, daily standups, and scheduled emails.

    0 0 1 * * runs at midnight on the first day of every month. Used for billing, monthly reports, and certificate renewal checks.

    Common Pitfalls

    Timezone confusion: Cron expressions run in the timezone of the server or service executing them. A job scheduled for 0 9 * * * runs at 9 AM in whatever timezone the cron daemon is configured for. Always check which timezone your scheduler uses, and be aware that UTC-based schedulers will not follow daylight saving changes.

    Day-of-month vs day-of-week: When both fields are set to specific values (not *), most cron implementations treat them as OR conditions, not AND. This means 0 0 15 * 1 runs on the 15th of every month AND every Monday, not only on Mondays that fall on the 15th.

    Overlapping runs: If a job takes longer than the interval between runs, you can end up with multiple instances running simultaneously. Use a lock file, a distributed lock (like Redis SETNX), or your scheduler's built-in concurrency controls to prevent this.

    Cron in Different Platforms

    Standard Unix cron uses 5 fields. Quartz Scheduler (used in Java applications and Spring) adds a seconds field at the beginning, making it 6 fields. AWS CloudWatch also uses 6 fields but includes a year field. GitHub Actions uses standard 5-field syntax in the schedule trigger. Always check the documentation for your specific platform, since field ordering and special character support can vary.

    Related Tools

    Scheduling API calls? Check out the API Request Tester to build and test your requests first. Working with timestamps in your scheduled jobs? The Unix Timestamp Converter helps you work with epoch time. For a look at free APIs you can build scheduled integrations with, see 30+ Free APIs for Developers in 2026.

    Privacy

    This tool runs 100% client-side. No data is sent to any server. Your cron expressions never leave your browser.