Standard Webhooks: API Design & Integration Surface
Docs-backedNo REST API — Standard Webhooks is an open specification and SDK library. SDK usage: `npm install standardwebhooks` (or pip install standardwebhooks). Webhook verification: import Webhook from SDK; call wh.verify(payload, headers) with the webhook secret. The spec defines: webhook-id (unique message ID), webhook-timestamp (Unix timestamp), webhook-signature (one or more HMAC-SHA256 signatures). Signature computed as HMAC-SHA256(secret, '{webhook-id}.{webhook-timestamp}.{payload}'). Multiple signatures in webhook-signature header for secret rotation. No cloud service to call; entirely local library execution.