๐Ÿช HookSniff/Stripe
Get StartedPricingDocsStatus
Log In
๐Ÿ’ณStripe Integration

Stripe Webhooks Guide

Receive and verify Stripe webhooks for payments, subscriptions, disputes, and more. Handle every Stripe event reliably.

โšก Quick Start

  1. 1

    Create a HookSniff endpoint

    Sign up and create an endpoint that will receive Stripe webhooks.

  2. 2

    Configure Stripe

    In Stripe Dashboard โ†’ Developers โ†’ Webhooks โ†’ Add endpoint. Paste your HookSniff URL.

  3. 3

    Select events

    Choose which events to receive: payment_intent.succeeded, customer.subscription.updated, etc.

  4. 4

    Verify & process

    Use the HookSniff SDK to verify Stripe signatures and process events in your application.

๐Ÿ“‹ Common Stripe Events

EventWhen It Fires
payment_intent.succeededPayment completed successfully
payment_intent.payment_failedPayment attempt failed
customer.subscription.createdNew subscription started
customer.subscription.updatedSubscription changed (plan, quantity)
customer.subscription.deletedSubscription cancelled
invoice.paidInvoice payment succeeded
invoice.payment_failedInvoice payment failed
charge.refundedRefund issued
charge.dispute.createdCustomer initiated a dispute
checkout.session.completedStripe Checkout completed

๐Ÿ’ป Node.js Example

import { Webhook } from 'hooksniff-sdk';

const webhook = new Webhook(process.env.HOOKSNIFF_SECRET);

app.post('/webhooks/stripe', (req, res) => {
  const event = webhook.verify(req.body, req.headers);
  
  switch (event.type) {
    case 'payment_intent.succeeded':
      // Handle successful payment
      handlePayment(event.data.object);
      break;
    case 'customer.subscription.deleted':
      // Handle subscription cancellation
      handleCancellation(event.data.object);
      break;
  }
  
  res.json({ received: true });
});

Start receiving Stripe webhooks

HookSniff handles signature verification, retries, and delivery monitoring automatically.

Start for free โ†’

Product

  • Get Started
  • Pricing
  • Compare
  • Playground
  • Startups
  • Security

Compare

  • HookSniff vs Svix
  • HookSniff vs Hookdeck
  • HookSniff vs Hook0
  • HookSniff vs Convoy
  • Svix Alternatives
  • Hookdeck Alternatives
  • Convoy Alternatives
  • Build vs Buy

Resources

  • Webhook Guides
  • Webhook Glossary
  • Stripe Webhooks
  • GitHub Webhooks
  • Shopify Webhooks
  • Blog
  • Changelog
  • Newsletter
  • Docs

Company

  • About
  • Contact
  • FAQ
  • Status
  • Terms
  • Privacy
  • GitHub
๐ŸชHookSniff

ยฉ 2026 HookSniff. All rights reserved.