Stripe Webhook Example
This public Stripe webhook page gives developers a practical endpoint format, sample headers, and payload schema for billing integrations.
Use it when documenting Stripe events, testing handler logic, or sharing webhook setup instructions with your team.
Endpoint URL
https://hook-cgqnh1.fasthook.io/Sample request (curl)
curl -X POST "https://hook-cgqnh1.fasthook.io/" \
-H "Content-Type: application/json" \
-H "Stripe-Signature: t=1713600000,v1=***redacted***" \
-d '{"id":"evt_1QxYz","type":"invoice.paid","data":{"object":{"id":"in_123","customer":"cus_123"}}}'Sample payload
{
"id": "evt_1QxYz",
"type": "invoice.paid",
"created": 1713600000,
"data": {
"object": {
"id": "in_123",
"customer": "cus_123",
"status": "paid",
"amount_paid": 4900,
"currency": "usd"
}
}
}Why this is useful
- Shows realistic Stripe event shape for local and CI tests.
- Helps verify signature validation and idempotency handling.
- Useful as a copy-paste example for internal docs and runbooks.
Open full public hook page: /hooks/hook-stripe-test