Vercel Cron Daily
0 0 * * *Every day at 12:00 AM
Next 10 Executions
Times shown in UTC
- Tue, May 19, 202600:00
- Wed, May 20, 202600:00
- Thu, May 21, 202600:00
- Fri, May 22, 202600:00
- Sat, May 23, 202600:00
- Sun, May 24, 202600:00
- Mon, May 25, 202600:00
- Tue, May 26, 202600:00
- Wed, May 27, 202600:00
- Thu, May 28, 202600:00
Field Breakdown
0Minute
0
0Hour
0
*Day of Month
Every day
*Month
Every month
*Day of Week
Every day of week
About This Schedule
To run a Vercel cron job daily at midnight UTC, configure your vercel.json:
This calls your `/api/daily-job` route at midnight UTC every day. Daily cron jobs on Vercel are commonly used for: revalidating static pages (ISR), sending daily digest emails, cleaning up expired data, generating daily sitemaps, and syncing data from external APIs.
**Best practices**: keep your function execution under 30 seconds (the Vercel timeout), handle idempotency (the job may occasionally fire twice), and use environment variables for API keys. If your daily job needs more than 30 seconds, offload the heavy work to a queue or external service and use the cron job as a trigger.