Job Templates
Ready-to-use cron job templates for common use cases. Browse the in-app gallery or use the CLI/API.
TrigRun ships with 14 pre-built templates across 5 categories. The fastest way to create your first job is to browse the in-app gallery at trigrun.com/templates — pick a template, click "Use this template", and your job creation form is pre-filled.
You can also use templates from the CLI or API:
API:
The template pre-fills schedule, retry policy, request method, headers, and any other defaults the template defines — you only need to replace the endpoint-specific pieces.
These templates are ready to run. Replace the url with your endpoint and you're done.
Health check ping
Pings your /health endpoint every 5 minutes. Alerts you on failure. Good first job to test TrigRun with a real endpoint.
CLI:
Don't have a health endpoint yet? Use https://httpbin.org/get to verify TrigRun is working end-to-end before pointing it at your real service.
Daily data sync
Triggers a POST to your sync endpoint at 2 AM UTC every day. Useful for ETL pipelines, cache refreshes, or any nightly batch operation.
This template uses secret://sync-api-key — store your API key as a secret so it never appears in plain text.
TrigRun evaluates cron expressions in UTC. If your team thinks in local wall-clock time, convert that intended local time to UTC before saving the job, then confirm the preview in the dashboard.
Weekly report
Posts to your report generation endpoint every Monday at 9 AM UTC. Common for digest emails, analytics summaries, or Slack recaps.
CLI:
After creating a job
Trigger it immediately to verify your endpoint receives the request:
Check the execution result:
Add a failure alert so you know when something goes wrong — see Notifications.