Webhook Stabilizer
An intelligent inbound proxy API that sits between webhook providers (Stripe, Shopify, GitHub, etc.) and your app. It automatically repairs malformed JSON, infers missing fields from context, validates values semantically, detects silent schema changes, and fixes broken payloads through a 19-step processing pipeline — so your app always receives clean, complete, validated data. 10 endpoints…
Webhook Stabilizer endpoints
| Method | Endpoint | Description |
|---|---|---|
| POST |
Validate Webhook /validate |
Validate a webhook payload against a schema without forwarding it (dry run) |
| POST |
Repair Webhook /repair |
Accept payload, automatically repair it according to schema rules, and forward to endpoint |
| POST |
Transform Webhook /transform |
Apply deterministic transformations to webhook payloads without validation |
| GET |
Get Status /status |
Get stateless check of the service + schema health |
| POST |
Simulate Webhook /simulate |
Send a sample payload and see how it would be repaired without forwarding |
| GET |
Get Schema Info /schema-info |
Return schema rules for a given webhook type (read-only) |
| POST |
Check Signature /signature-check |
Verify HMAC or other webhook signatures inline |
| POST |
Set Fail Mode /fail-mode |
Temporarily switch between fail-open/fail-closed per request |
| GET |
Get Repair Summary /summary |
Returns stats about repairs applied (useful for logs or headers) |
| GET |
Health Check /health |
Detailed health check |
| GET |
Get Drift Report /drift-report |
Get schema drift report for a webhook — shows detected payload pattern change |