How to Test Stripe Webhooks
Stripe uses webhooks to notify your application when events like payments, subscriptions, and disputes occur.
Stripe Official Webhook Docs1. Stripe Webhook Events
Stripe can send the following webhook events to your endpoint:
checkout.session.completedpayment_intent.succeededpayment_intent.payment_failedcustomer.subscription.createdcustomer.subscription.updatedcustomer.subscription.deletedinvoice.paidinvoice.payment_failedcharge.refundedcharge.dispute.created2. Set Up a Test Endpoint with HookRay
Follow these steps to start receiving Stripe webhooks for testing:
- Go to HookRay and click "Start Testing — Free" to get your unique webhook URL.
- Copy the URL (e.g.,
https://h.hookray.com/abc123). - In your Stripe dashboard, navigate to the webhook settings and paste the HookRay URL as your endpoint.
- Select the events you want to receive (see list above).
- Trigger a test event — HookRay will show the incoming webhook in real-time.
3. Sample Stripe Webhook Payload
Here's an example of what a Stripe webhook payload looks like:
{
"id": "evt_1234567890",
"type": "checkout.session.completed",
"data": {
"object": {
"id": "cs_test_abc123",
"amount_total": 4999,
"currency": "usd",
"customer_email": "customer@example.com",
"payment_status": "paid"
}
}
}4. Common Issues & Troubleshooting
Webhook not arriving?
Check that your endpoint URL is correct and publicly accessible. Stripe cannot reach localhost URLs — use HookRay's cloud URL instead.
Getting 400 or 500 errors?
HookRay accepts any payload and returns 200 OK by default, so the issue is likely on Stripe's side. Check your webhook configuration and event selection.
Need to verify webhook signatures?
Stripe signs webhook requests for security. Use HookRay to capture the raw headers and body, then implement signature verification in your application code.
5. Next Steps
- Use HookRay's webhook replay feature to re-send captured webhooks while building your handler
- Enable smart parsing (Pro plan) to see Stripe-specific fields highlighted automatically
- Check the Stripe webhook documentation for the complete event reference
Ready to test Stripe webhooks?
Get a free webhook URL in 5 seconds. No signup required.
Start Testing Stripe Webhooks — Free