Cron Expression Parser & Next Runs avatar

Cron Expression Parser & Next Runs

Pricing

from $0.001 / cron parsed

Go to Apify Store
Cron Expression Parser & Next Runs

Cron Expression Parser & Next Runs

Validate cron expressions, explain them in plain English, and compute the next N run times in any timezone. Sanity-check schedules across many jobs at once.

Pricing

from $0.001 / cron parsed

Rating

0.0

(0)

Developer

hiper soft

hiper soft

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

13 days ago

Last modified

Share

Validate cron expressions, explain them in plain English, and list their next run times — in any timezone, for many expressions at once. Sanity-check schedules across all your jobs before they go live.

Cron Expression Parser & Next Runs input — configure the options in the Apify Console

What it does

  • Validates each cron expression and flags bad ones.
  • Explains it in plain English (e.g. "At 09:00, Monday through Friday").
  • Computes the next N run times in your chosen IANA timezone.

Use cases

  • DevOps — audit cron schedules across many jobs and timezones.
  • Docs & dashboards — turn cron strings into human-readable descriptions.
  • Debugging — confirm exactly when a schedule will fire next.

Input

{ "expressions": ["0 9 * * 1-5", "*/15 * * * *"], "timezone": "America/New_York", "count": 5 }
FieldTypeDescription
expressionsarrayCron expressions to validate and expand.
timezonestringIANA timezone (e.g. UTC, Asia/Singapore).
countintegerUpcoming run times to list per expression (1–50).

Output

Cron Expression Parser & Next Runs output — the results as a clean dataset

{ "expression": "0 9 * * 1-5", "valid": true, "humanText": "At 09:00 AM, Monday through Friday", "nextRuns": ["2026-08-17T13:00:00.000Z", "..."], "timezone": "America/New_York" }

Output schema

FieldTypeDescription
expressionstringThe cron expression.
validbooleanWhether it parsed successfully.
humanTextstringPlain-English description.
nextRunsarrayNext run times (ISO).

FAQ

Which cron syntax is supported? Standard 5-field cron plus common extensions (steps, ranges, lists).

Can I automate it? Yes — via integrations on the Apify platform and the Apify API.

Notes

Original clean-room implementation.