Docs

Cron jobs

Run a snippet on a schedule.

A cron job is just a snippet you trigger on a schedule. Write the handler once, then invoke its URL on whatever cadence you need.

Trigger it with any scheduler that can make an HTTP request: a system crontab, GitHub Actions, a Cloudflare cron trigger, or an uptime pinger.

# system crontab: run every morning at 8
0 8 * * * curl -s https://quik.run/r/signup-digest
However you trigger it, every invocation is logged with timings and output in your run history.