JSON10 rows
Sample Webhook Payload — JSON
Download a free JSON file containing realistic webhook payloads. Includes event type, timestamp, signature header, and nested event data matching patterns used by Stripe, GitHub, Shopify, and Twilio webhooks. Use this to test webhook handler endpoints, validate payload signature verification, test event routing logic, and develop integration middleware.
Data Structure Preview
{
"event": "order.completed",
"timestamp": "2024-06-15T14:22:00Z",
"webhook_id": "wh_abc123",
"signature": "sha256=a1b2c3d4...",
"data": {
"order_id": "ORD-5001",
"customer_email": "buyer@example.com",
"total": 149.97,
"currency": "USD",
"items": [{"sku": "SKU-001", "qty": 3, "price": 49.99}]
}
}Fields
eventtimestampwebhook_idsignaturedatadata.order_iddata.items[]
Common Use Cases
- Testing webhook endpoint handlers
- Validating HMAC signature verification logic
- Testing event-driven architectures
- Developing integration middleware and adapters
- Testing retry and idempotency handling
Related Tools
Frequently Asked Questions
What webhook events are included?
The file includes payloads for order.completed, payment.succeeded, customer.created, subscription.cancelled, and refund.issued events.
Is the signature valid?
The signature field contains a placeholder HMAC hash. In production, you would compute and verify this against your webhook secret.