CronTool
Cron expression editor & debugger
Question

How do you run a cron job every minute only on specific hours?

Answer

Easy! Just use the following cron:


* 11,16,21 * * * command

This will run the cron job every minute of the 11th, 16th and 21st hour of the day.

Why this matters

The minute field is * (any minute), so the job fires at every clock minute within the chosen hours. Three hours × 60 minutes each = 180 runs per day. That's a lot — verify on the calendar that you actually want this volume.


If “every minute on these hours” turns out to be more than you need, a few common substitutes:

  • Every 5 minutes during those hours: */5 11,16,21 * * * (36 runs/day)
  • Every 15 minutes: */15 11,16,21 * * * (12 runs/day)
  • Once an hour at the top: 0 11,16,21 * * * (3 runs/day)

Multi-hour patterns combine well with weekday restrictions. To run only on weekdays during those hours, add the day-of-week field: * 11,16,21 * * 1-5.

Read the dedicated guide: Cron every minute.

Cron schedule used

Calendar

View future cron matches in a calendar

April 2026

Showing next 1000 cron schedules

Loading...

See this cron expression on the calendar → view example

Related cron questions

Other answers and worked examples for the most confusing cron expressions.

QuestionHow do I set up a cron job that runs every day at 1PM, 2PM and 3PM?
QuestionHow can I run command every six hours every day?
QuestionI am trying to add a crontab entry to execute a script every 30 minutes, on the hour and 30 minutes past the hour or something similar. How can I do this?
QuestionHow can I set up a cron job to run every night at 2:30? I am familiar with configuring it to run at 2:00, but not 2:30.

Ready to schedule it?

Point Crontap at any URL. Pick any cron. Done.

WordPress, Shopify, Railway, Cloud Run, Vercel, HubSpot, Ghost, your own box. If it answers HTTP, Crontap can drive it on a clock you can read, in the timezone that actually matters, and page you when something breaks.

Free forever tier ・ No credit card required

Your next schedule
GET/wp-cron.php?doing_wp_cron=1

Schedule

every 5 minutes

Next run

in 23s

Permalink: https://tool.crontap.com/help/cron-job-run-script-at-specific-hours

Apihustle Logo

This tool is part of the Apihustle suite - a collection of tools to test, improve and get to know your API inside and out.

  • Clobbr logo

    Clobbr

    The app & CLI tool to test API endpoint speed.

    Visit
  • Crontap logo

    Crontap

    Schedule recurring API calls using cron syntax.

    Visit
  • CronTool logo

    CronTool

    Debug multiple cron expressions on a calendar.

    Visit

  • Page AI

    AI Website Generator that designs and writes clean code.

    Visit
  • Shipixen

    Generate customized boilerplates in minutes.

    Visit
  • Page UI

    Landing page UI components for React & Next.js

    Visit