Run a Cron Job Every 10 Minutes
Cron expression to run a job every 10 minutes. Uses the */10 step value in the minute field.
Cron Expression
*/10 * * * *
Every 10 minutes
Field-by-Field Breakdown
| Field | Value | Meaning |
|---|---|---|
| Minute | */10 | every 10 minutes |
| Hour | * | every hour |
| Day of Month | * | every day of month |
| Month | * | every month |
| Day of Week | * | every day of week |
Next 5 Scheduled Runs
Computed in UTC. Use the generator to compare UTC with your browser-local time.
- 1Wed, Jun 3, 2026, 07:20 PM
- 2Wed, Jun 3, 2026, 07:30 PM
- 3Wed, Jun 3, 2026, 07:40 PM
- 4Wed, Jun 3, 2026, 07:50 PM
- 5Wed, Jun 3, 2026, 08:00 PM
Schedule this with TrigRun
Deploy this cron schedule in seconds. Automatic retries, encrypted secrets, full execution history, and native MCP support for AI agents.
Start Scheduling — Free*/10 * * * *
Frequently Asked Questions
What is the cron expression for every 10 minutes?
*/10 * * * * runs a job every 10 minutes — at :00, :10, :20, :30, :40, and :50 of every hour.