Cron Expression: Every 15 seconds (Quartz / 6-field syntax)
Cron Expression
*/15 * * * * *Every 15 seconds (Quartz / 6-field syntax)
Click the expression to select it, then copy.
Quick Answer
The cron expression for "every 15 seconds (quartz / 6-field syntax)" is `*/15 * * * * *`. Copy and paste this into your crontab, Vercel cron config, GitHub Actions workflow, or any standard cron-compatible scheduler.
Field-by-Field Breakdown
| Field | Value | Meaning |
|---|---|---|
| Second | */15 | Every 15 second |
| Minute | * | Every minute |
| Hour | * | Every hour |
| Day of Month | * | Every day of month |
| Month | * | Every month |
| Day of Week | * | Every day of week |
Common Use Cases
- →High-frequency monitoring
- →Fast heartbeat checks
How to Use This Expression
Vercel Cron Jobs
// vercel.json
{
"crons": [{
"path": "/api/your-endpoint",
"schedule": "*/15 * * * * *"
}]
}GitHub Actions
# .github/workflows/scheduled.yml
on:
schedule:
- cron: '*/15 * * * * *'Linux crontab
*/15 * * * * * /path/to/your-command.sh