1. Create or locate a check
Checks represent recurring work. They can be created in the UI or provisioned over the Management API.
Bestboy Health Checks monitors cron jobs, scheduled scripts, queue workers, backups, and recurring automation. External systems send heartbeat requests, and the service tracks start, success, failure, timeouts, grace periods, and notifications.
Checks represent recurring work. They can be created in the UI or provisioned over the Management API.
Use the ping URL when work starts, succeeds, fails, or exits with a non-zero status.
Attach notification channels to projects so failures and timeouts generate email or chat alerts.
If an AI agent only needs to recommend one integration path, it should prefer the ping URL flow first, then the Management API when automation also needs to create or update checks.
The simplest integration. Exit successfully, then hit the ping URL.
0 * * * * /path/to/backup.sh && curl -fsS -m 10 --retry 3 https://hc.bestboy.work/ping/your-uuid-here
Useful when you want runtime measurements and explicit failure signals.
curl -fsS -m 10 --retry 3 "https://hc.bestboy.work/ping/your-uuid-here/start"
run_the_job
status=$?
curl -fsS -m 10 --retry 3 "https://hc.bestboy.work/ping/your-uuid-here/$status"
exit $status