Cron expression tester*/5 * * * *

What does */5 * * * * mean?

Every 5 minutes. Runs at minute 0, 5, 10, 15 … 55 of every hour — twelve times per hour.

One of the most-used intervals in the wild: API polling, cache warmers, syncing data between systems, and lightweight health checks that need to feel responsive without hammering resources.

Next scheduled runs

Calculating…

Field-by-field breakdown

ValueFieldMeaning
*/5Minute (0–59)every 5 step
*Hour (0–23)every value
*Day of month (1–31)every value
*Month (1–12)every value
*Day of week (0–6, Sun=0)every value

Standard 5-field Vixie/POSIX cron: minute hour day-of-month month day-of-week. Cron uses the server's local timezone unless configured otherwise. Non-standard extensions (@daily, L, W, #, seconds) aren't evaluated here.

Open this schedule in the interactive tester →

Will you know if a every 5 minutes run is skipped?

Knowing when */5 * * * * should fire is only half of it. The failure that hurts is the silent one — the box was asleep, the trigger broke, the token expired, and nobody noticed. Cronpulse is a free dead-man's-switch: your job pings a URL each time it runs on this schedule, and if a ping goes missing, we alert you by email, Discord, Slack, or webhook.

Monitor a every 5 minutes job — free → No signup needed to start.

Related cron schedules

ScheduleMeaning
*/10 * * * *Every 10 minutes
*/15 * * * *Every 15 minutes
*/30 * * * *Every 30 minutes
0 * * * *Every hour (on the hour)
0 */2 * * *Every 2 hours

All common cron expressions → · Monitor scheduled jobs → · Monitor an AI agent →