Stripe Webhook

A mock Stripe charge.succeeded webhook payload.

Open in JSON Formatter

About this format

Stripe uses JSON webhooks to asynchronously notify your application of events like successful payments.

Example Data

{
  "id": "evt_123",
  "type": "charge.succeeded",
  "data": {
    "object": {
      "id": "ch_123",
      "amount": 2000,
      "currency": "usd",
      "paid": true
    }
  }
}

When to use Stripe Webhook

  • Simulating payment successes
  • Testing webhook handlers
  • Extracting transaction IDs