Cron Translator

Cron for every 2 hours

Twelve runs a day, on even hours starting at midnight.

0 */2 * * *

At minute 0 past every 2nd hour

Interpreted in UTC · approximately 12 runs per day

Things to check

  • Note

    Interpreted in UTC

    A cron expression has no timezone of its own — the scheduler's zone decides when it fires. These times are computed in UTC. The same expression on a host in another zone runs at a different moment.

    Fix: Set the schedule timezone explicitly (TZ= or CRON_TZ= in crontab, `timeZone` in Kubernetes, or the scheduler's own setting). Vercel Cron Jobs always run in UTC.

Fields

Minute0
At minute 0.
Hour*/2
Every 2 hours.
Day of month*
Every day of the month.
Month*
Every month.
Day of week*
Every day of the week.

Next runs

  1. Wed, 2026-09-02, 16:00
  2. Wed, 2026-09-02, 18:00
  3. Wed, 2026-09-02, 20:00
  4. Wed, 2026-09-02, 22:00
  5. Thu, 2026-09-03, 00:00
  6. Thu, 2026-09-03, 02:00
  7. Thu, 2026-09-03, 04:00
  8. Thu, 2026-09-03, 06:00

Try a different expression or timezone

Times above are in UTC. Pick a timezone here to see this schedule in local time.

Call this from code or an agent

curl 'https://crontoenglish.com/api/v1/explain?expression=0%20*%2F2%20*%20*%20*'

API and MCP setup · this page as markdown

Related schedules