Skip to content
312+ businesses automated avg. 14h/week savedManual workflows cost the average team €560/week fix it in 10 daysDeployed in 5–10 business days · 30-day money-back guaranteeDental · Real Estate · Agencies · E-commerce · Covered99.97% uptime SLA · Monitored 24/7 by our ops teamA full-time ops hire costs €50K+/yr PURIST delivers more in daysn8n · Make · Claude AI · 500+ workflow templatesFree automation audit limited to 5 spots this week312+ businesses automated avg. 14h/week savedManual workflows cost the average team €560/week fix it in 10 daysDeployed in 5–10 business days · 30-day money-back guaranteeDental · Real Estate · Agencies · E-commerce · Covered99.97% uptime SLA · Monitored 24/7 by our ops teamA full-time ops hire costs €50K+/yr PURIST delivers more in daysn8n · Make · Claude AI · 500+ workflow templatesFree automation audit limited to 5 spots this week312+ businesses automated avg. 14h/week savedManual workflows cost the average team €560/week fix it in 10 daysDeployed in 5–10 business days · 30-day money-back guaranteeDental · Real Estate · Agencies · E-commerce · Covered99.97% uptime SLA · Monitored 24/7 by our ops teamA full-time ops hire costs €50K+/yr PURIST delivers more in daysn8n · Make · Claude AI · 500+ workflow templatesFree automation audit limited to 5 spots this week
PURIST
312+
Clients automated
14 h/wk
Avg time saved
99.97%
Uptime SLA
< 7 days
Deploy time
PURIST AI
Claude Opus 4.7 · n8n v1.71 · <80ms
What type of business are you running? I'll show you exactly which processes we'd automate first and your estimated ROI.
Powered by n8n + Claude Opus 4.7 Get my free automation plan →

Free Tools /Scheduling

Cron Expression Builder & Explainer

Paste a cron expression to see exactly what it means, or build one field by field and copy the result straight into your n8n Schedule Trigger.

Explain a cron expression

Next 5 run times, from now

Build a schedule

How this tool works

01

Two-way translation

Type a cron expression to get a plain-English explanation, or use the builder tab to pick your schedule visually and generate the expression.

02

Standard 5-field cron

Supports the format every scheduler uses: minute, hour, day-of-month, month, day-of-week, including wildcards (*), steps (*/5), ranges (1-5), and lists (1,15,30).

03

Runs entirely in your browser

Nothing you type is sent anywhere. The parser and the explanation are computed client-side in JavaScript.

Frequently asked questions

What is a cron expression?

A cron expression is a 5-field string that defines a recurring schedule: minute, hour, day of month, month, and day of week. It originated in Unix cron and is now the standard scheduling format in n8n, GitHub Actions, Kubernetes CronJobs, and most automation platforms.

What does an asterisk (*) mean in cron?

An asterisk means "every value" for that field. "* * * * *" means every minute of every hour of every day. Replacing a field with a specific number restricts it to that value only.

What is the difference between */5 and 0,5,10,15... in the minute field?

They produce the same result for a range starting at 0, but */5 is shorthand for "every 5th value starting from the field minimum" and is easier to read and maintain than spelling out every value in a list.

Does cron use 24-hour time?

Yes. The hour field is always 0-23, so 2pm is written as 14, not 2. This is one of the most common cron mistakes.

Can I combine day-of-month and day-of-week?

Most cron implementations treat day-of-month and day-of-week as OR when both are restricted (not wildcards), which produces confusing results. If you need "the 1st of the month AND a Monday," most platforms cannot express that in a single cron field and need two separate triggers instead.