Cron Expression: 0 1 * * *

Every day at 01:00 (1 AM).

Field Breakdown

FieldValue
Minute0
Hour1
Day of Month*
Month*
Day of Week*

Common Use Case

Off-peak processing, nightly backups.

Sample Fire Times (UTC)

WhenUnix Timestamp
2026-04-28 01:001777338000
2026-04-29 01:001777424400
2026-04-30 01:001777510800
2026-05-01 01:001777597200
2026-05-02 01:001777683600

Sample times computed at build; your scheduler will fire on its own clock.

Equivalents in Popular Schedulers

crontab (Linux/macOS)

0 1 * * * /path/to/your/script.sh

GitHub Actions (.github/workflows/*.yml)

on:
  schedule:
    - cron: '0 1 * * *'

AWS EventBridge (cron format)

cron(0 1 * * *)    # Note: AWS uses 6 fields with year

Kubernetes CronJob

spec:
  schedule: "0 1 * * *"

Other Common Cron Expressions

Need the full converter? Open the Timestamp Converter →