Handles Stripe webhook verification and event processing with official SDK wrappers for Node and Python. Ships with complete examples for Express, Next.js, and FastAPI that show the full handler setup, not just verification snippets. The core pattern is simple: pass raw body and signature header to constructEvent, catch SignatureVerificationError, then switch on event type. Includes a table of common events like payment_intent.succeeded and customer.subscription.deleted. Built by Hookdeck, so it naturally pairs with their webhook-handler-patterns skill for idempotency and retry logic. If you're wiring up Stripe payments or subscriptions and need to stop guessing why signature verification fails, this gives you the working code.
npx skills add https://github.com/hookdeck/webhook-skills --skill stripe-webhooks