UptimeTea

API Documentation

The UptimeTea API is easy to use and free for all plans.

Report cron/heartbeat status

Public endpoint for cron jobs and heartbeat monitors to report their execution status. No authentication required - uses callback token from watcher.

POST
https://api.uptimetea.com/callbacks/:callback_token

Headers

Content-Type
REQUIRED
STRING
application/json

Response body

{
  "success": true
}

Code Examples

curl -X POST "https://api.uptimetea.com/callbacks/your-callback-token" \
  -H "Content-Type: application/json" \
  -d '{
    "status": "success",
    "metadata": {
      "duration": 5.2,
      "records_processed": 1000
    }
  }'