DD
DevDash

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

Cron Expression

55 * * * *

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

Click the expression to select it, then copy.

Quick Answer

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

Field-by-Field Breakdown

FieldValueMeaning
Minute55At minute 55
Hour*Every hour
Day of Month*Every day of month
Month*Every month
Day of Week*Every day of week

Common Use Cases

  • Last-minute pre-hour jobs
  • Advance data preparation
  • Staggered scheduling

How to Use This Expression

Vercel Cron Jobs

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

GitHub Actions

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

Linux crontab

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

Frequently Asked Questions

Related Cron Expressions

Want API access + no ads? Pro coming soon.