Cron Job Every 10 minutes
Execute a cron job every 10 minutes for periodic data refresh. Use the cron string */10 * * * *, see the next 5 execution times, and copy Python, Node.js, Bash and n8n snippets.
Quick Answers
- What does the "Every 10 minutes" cron expression mean?
- This cron expression is "*/10 * * * *", which in plain English means: Execute a cron job every 10 minutes for periodic data refresh..
- When will this cron expression run next?
- With the expression "*/10 * * * *", the next execution times are Fri, Aug 14, 2026, 12:50:00 PM UTC, Fri, Aug 14, 2026, 01:00:00 PM UTC, Fri, Aug 14, 2026, 01:10:00 PM UTC.
- How do I use this cron expression?
- Copy the exact string into crontab, cron triggers, or any scheduler such as GitHub Actions, n8n or Docker. Pre-built code snippets for Python, Node.js, Bash, Docker, GitHub Actions and n8n are included on this page.
*/10 * * * *Human readable
Execute a cron job every 10 minutes for periodic data refresh.
Next 5 execution times
- 1Fri, Aug 14, 2026, 12:50:00 PM UTC
- 2Fri, Aug 14, 2026, 01:00:00 PM UTC
- 3Fri, Aug 14, 2026, 01:10:00 PM UTC
- 4Fri, Aug 14, 2026, 01:20:00 PM UTC
- 5Fri, Aug 14, 2026, 01:30:00 PM UTC
from crontab import CronTab
from datetime import datetime
# Install: pip install python-crontab
cron = CronTab(user=True)
job = cron.new(command="/usr/bin/python3 /var/www/job_every-10-minutes.py", comment="scheduled by crongen")
job.setall("*/10 * * * *")
cron.write()
print(f"Installed: */10 * * * * -> /usr/bin/python3 /var/www/job_every-10-minutes.py")Related schedules
About the "every 10 minutes" cron schedule
The "every 10 minutes" cron schedule uses the expression "*/10 * * * *". This schedule fires 144 times per day, around the clock.
In plain English the cron string "*/10 * * * *" means: Every 10 minutes.
This cadence is a common choice for up-time monitoring and health checks where a short gap between alerts matters and queue workers and background jobs that must react to new data quickly. The schedule is deliberately kept simple: copy the string into any cron-aware scheduler (crontab, Vercel Cron, GitHub Actions, n8n, Docker or Kubernetes CronJob) and the run will repeat automatically — steady, with no manual triggering.