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 for timezone-aware results.
- 1Mon, Mar 16, 2026, 08:40 PM
- 2Mon, Mar 16, 2026, 08:50 PM
- 3Mon, Mar 16, 2026, 09:00 PM
- 4Mon, Mar 16, 2026, 09:10 PM
- 5Mon, Mar 16, 2026, 09:20 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.