TopDev

Cron Expression Explainer & Parser

Read cron expressions in plain English + see the next 5 run times. For Linux cron, GitHub Actions, AWS EventBridge, Vercel Cron.

All tools Browser-only
Explanation

Field breakdown

Minute
Hour
Day of month
Month
Day of week

Next run times

    Common patterns

    Cron expression has 5 fields: minute (0-59) hour (0-23) day (1-31) month (1-12) weekday (0-7, 0=Sun). POSIX standard for Linux cron, GitHub Actions, AWS EventBridge, Vercel Cron.

    What is a cron expression?

    Cron is the Unix/Linux standard for scheduled tasks — running commands automatically at fixed times. A cron expression has 5 fields:

    ┌─── minute (0-59)
    │ ┌─── hour (0-23)
    │ │ ┌─── day of month (1-31)
    │ │ │ ┌─── month (1-12)
    │ │ │ │ ┌─── day of week (0-7, 0 and 7 = Sunday)
    │ │ │ │ │
    * * * * *  command

    Special characters

    When to use cron

    Common pitfalls

    Who this is for

    Backend devs, API integrators, anyone debugging JSON/YAML/CSV payloads or working with structured data.

    FAQ

    Is my sensitive data safe?

    Yes. JSON/YAML/CSV you paste is NOT uploaded to any server. All processing happens locally in your browser.

    Is there a size limit?

    Browser RAM dependent. Files under 10MB run smoothly. Larger files may freeze the tab.

    Related tools

    See all tools →