Cron Expression: */15 * * * *

Every 15 minutes (00, 15, 30, 45) of every hour.

Field Breakdown

FieldValue
Minute*/15
Hour*
Day of Month*
Month*
Day of Week*

Common Use Case

Sync jobs, log rotation triggers, heartbeat reports.

Sample Fire Times (UTC)

WhenUnix Timestamp
2026-04-27 22:001777327200
2026-04-27 22:151777328100
2026-04-27 22:301777329000
2026-04-27 22:451777329900
2026-04-27 23:001777330800

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

Equivalents in Popular Schedulers

crontab (Linux/macOS)

*/15 * * * * /path/to/your/script.sh

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

on:
  schedule:
    - cron: '*/15 * * * *'

AWS EventBridge (cron format)

cron(*/15 * * * *)    # Note: AWS uses 6 fields with year

Kubernetes CronJob

spec:
  schedule: "*/15 * * * *"

Other Common Cron Expressions

Need the full converter? Open the Timestamp Converter →