CronTool
Cron expression editor & debugger
Question

I am trying to create a Cron expression that runs every day at 8:00 AM and 3:30 PM. I understand how to create an expression that runs once a day, but not at multiple set times.

Answer

You should just use two crons:


# Every day at 8:00 AM
0 8 * * * command
# Every day at 3:30 PM
30 15 * * * command
Why this matters

Standard cron only allows a list per field, not a list of “hour:minute” pairs. So 0,30 8,15 * * * would run four times a day (8:00, 8:30, 15:00, 15:30) — not the two times you want.


When the two times share a minute (e.g. 08:00 and 15:00), one line is enough: 0 8,15 * * *. When they don't (08:00 and 15:30), use two cron lines as shown above. This is the most common “two times a day at fixed clock points” pattern in production crontabs.


Some schedulers (Quartz, AWS EventBridge) accept richer day-time expressions but never solve the “independent minute per hour” problem in a single line either. If you find yourself stitching together many cron entries to express one logical schedule, the multi-cron visualizer makes it easy to see them on one calendar.

Read the dedicated guide: Cron every day.

Cron schedules used

See this cron expression on the calendar → view example

Related cron questions

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

QuestionHow can I execute a cron job twice daily at midnight and 13:30?
QuestionHow do I set up a cron job that runs every day at 1PM, 2PM and 3PM?
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.
QuestionHow do I set a cron job to run twice a week (bi-weekly)?

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-expression-every-day-at-two-different-times

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