Monitor the services you rely on.

Services

Suggest a Service

Webhook API

Subscribe to status changes via webhook. We POST to your URL when a service status changes.

Subscribe
POST /api/webhooks
Content-Type: application/json

{
  "url": "https://your-server.com/hook",
  "services": ["shopify", "slack"],
  "secret": "your-optional-secret"
}
Payload you receive
{
  "event": "status_change",
  "service": "shopify",
  "previous_status": "operational",
  "current_status": "major_outage",
  "description": "...",
  "timestamp": "2025-01-15T10:30:00Z"
}
Verify signature
X-Pingfalcon-Signature: HMAC-SHA256(secret, body)
Unsubscribe
DELETE /api/webhooks/:id
Content-Type: application/json

{ "secret": "your-secret" }

Changelog

Loading...