Every 10 minutes
*/10 * * * *The cron expression */10 * * * * means: every 10 minutes.
Field breakdown
A standard cron expression has five fields. Here is how this one is parsed, field by field.
| Field | Value | Allowed range |
|---|---|---|
| Minute | */10 | 0-59 |
| Hour | * | 0-23 |
| Day of Month | * | 1-31 |
| Month | * | 1-12 |
| Day of Week | * | 0-6 (Sun-Sat) |
Next run times
The upcoming runs below are calculated in your browser, so they are always current. Times are shown in UTC and in your local timezone.
| UTC | Your time (UTC) |
|---|---|
| Fri, Jul 3, 2026, 12:10 AM | Fri, Jul 3, 2026, 12:10 AM |
| Fri, Jul 3, 2026, 12:20 AM | Fri, Jul 3, 2026, 12:20 AM |
| Fri, Jul 3, 2026, 12:30 AM | Fri, Jul 3, 2026, 12:30 AM |
| Fri, Jul 3, 2026, 12:40 AM | Fri, Jul 3, 2026, 12:40 AM |
| Fri, Jul 3, 2026, 12:50 AM | Fri, Jul 3, 2026, 12:50 AM |
Open this expression in the validator for a calendar view and other timezones.
Use this schedule on your platform
The same schedule, written for common platforms. Select a platform for a full guide and a ready-to-use configuration.
| Platform | Schedule |
|---|---|
| GitHub Actions | */10 * * * * |
| Vercel Cron | */10 * * * * |
| Kubernetes CronJob | */10 * * * * |
| AWS EventBridge | cron(*/10 * * * ? *) |
| node-cron | */10 * * * * |
See all cron converters for the full list of platforms.