DD
DevDash

Cron Expression: At 40 minutes past every hour (e.g. 1:40, 2:40)

Cron Expression

40 * * * *

At 40 minutes past every hour (e.g. 1:40, 2:40)

Click the expression to select it, then copy.

Quick Answer

The cron expression for "at 40 minutes past every hour (e.g. 1:40, 2:40)" is `40 * * * *`. Copy and paste this into your crontab, Vercel cron config, GitHub Actions workflow, or any standard cron-compatible scheduler.

Field-by-Field Breakdown

FieldValueMeaning
Minute40At minute 40
Hour*Every hour
Day of Month*Every day of month
Month*Every month
Day of Week*Every day of week

Common Use Cases

  • Two-thirds-way hourly offset
  • Staggered sync jobs
  • Pre-hour data pull

How to Use This Expression

Vercel Cron Jobs

// vercel.json
{
  "crons": [{
    "path": "/api/your-endpoint",
    "schedule": "40 * * * *"
  }]
}

GitHub Actions

# .github/workflows/scheduled.yml
on:
  schedule:
    - cron: '40 * * * *'

Linux crontab

40 * * * * /path/to/your-command.sh

Frequently Asked Questions

Related Cron Expressions

Want API access + no ads? Pro coming soon.