List endpoints
Create an endpoint
events subscribes to all events.
Retrieve an endpoint
Update an endpoint
Delete an endpoint
Verify incoming signatures
Every webhook request includesX-Webhook-Signature and X-Webhook-Event headers. Verify the signature before processing.
Manual verification
FastAPI example
Flask example
sha256=<HMAC-SHA256(secret, raw_body)>.
For routing events to handlers, see Registries.

