tools/data/cron parser
// data

cron parser

translate schedules to english

minute · hour · day-of-month · month · day-of-week // client-only
— enter a cron expression
*
minute
*
hour
*
day
*
month
*
weekday
// next 8 runs
— parse a valid expression first
// common schedules

              curl -sX POST 'https://api.whittly.dev/v1/cron/parse' \
  -H 'Authorization: Bearer $WHITTLY_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"expression":"*/5 9-17 * * 1-5"}'
            

              const res = await fetch('https://api.whittly.dev/v1/cron/parse', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer ' + apiKey,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({ expression: "*/5 9-17 * * 1-5" }),
});
const data = await res.json();
            

              const { data } = await axios.post(
  'https://api.whittly.dev/v1/cron/parse',
  { expression: "*/5 9-17 * * 1-5" },
  { headers: { Authorization: 'Bearer ' + apiKey } }
);
            
// prosaved expressionspro·history syncproupgrade →

// about this tool

A cron expression is a compact notation for recurring schedules used in Unix cron jobs, Kubernetes CronJobs, CI/CD pipelines, and task schedulers. This parser translates any expression into plain English and shows the next scheduled run times.

// when to use

  • Verify a cron schedule before deploying a job
  • Explain a cron expression to a non-technical teammate
  • Find the next run time for a scheduled task
  • Debug why a job runs more or less often than expected

// faq

What format does this support?
Standard 5-field POSIX cron (minute hour day-of-month month day-of-week) and extended 6-field format with an optional seconds field at the start.
What does */5 mean?
*/5 means "every 5 units" — in the minute field it means every 5 minutes. The * means "all values" and /5 means "step by 5". So */5 in minutes = 0, 5, 10, 15, ... 55.
// history
Pro Cloud Sync — upgrade
no operations yet