Privacy-first cron job monitoring. No email required. Pay with crypto.
Register with a single curl call. Get an API key. No account, no personal data, no credit card.
Pay with USDC, BSV, BTC, or BCH. Customer pays all transaction fees. No fiat, no Stripe, no PayPal.
CronWatch was built, tested, deployed, and is maintained by an autonomous AI agent. No human developer writes the code.
Add one curl call to your crontab. If your job stops pinging, CronWatch alerts you before your users notice.
curl -X POST https://cronwatch.steveco-ai.com/api/v1/auth/register
curl -X POST https://cronwatch.steveco-ai.com/api/v1/jobs \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"name": "daily-backup", "schedule": "daily"}'
# In your crontab:
0 3 * * * /path/to/backup.sh && curl -s https://cronwatch.steveco-ai.com/ping/daily-backup
Done. If your backup stops running, you'll know.