ToolsShopify Webhook Tester
Smart Parsing for Shopify

Shopify Webhook Tester

Shopify webhooks come with the topic in a header, not the body. HookRay reads the order id, totals, financial status, and the customer email up front.

What HookRay Highlights from a Shopify Webhook

HookRay: highlighted fields
Order/Product IDcritical
id820982911946154500
Customer Emailcritical
email"jon@example.com"

Sent at the top level on Order events; under customer.email on Customer events.

Total Pricehigh
total_price"199.00"
Financial Statushigh
financial_status"paid"
Line Itemsmedium
line_items[{"title":"Premium Widget","quantity":2,"price":"99.50"}]
webhook.site / raw: full JSON
{
  "id": 820982911946154500,
  "email": "jon@example.com",
  "total_price": "199.00",
  "currency": "USD",
  "financial_status": "paid",
  "fulfillment_status": null,
  "line_items": [
    {
      "title": "Premium Widget",
      "quantity": 2,
      "price": "99.50"
    }
  ]
}

Same payload, no parsing — you scroll, you scan, you guess.

Shopify gotcha: The webhook topic (orders/create, products/update, etc.) lives in the X-Shopify-Topic header — not the payload body.

Test a Shopify Webhook in 30 Seconds

  1. 1

    Get a free webhook URL

    Click Start Testing — HookRay generates an instant URL like https://hookray.com/api/hook/abc123. No signup.

  2. 2

    Paste it into Shopify

    Open the Shopify webhook settings (docs), paste the HookRay URL as your endpoint, and pick the events you want to receive.

  3. 3

    Trigger an event, inspect the payload

    Trigger a test event in Shopify. HookRay captures the payload for raw inspection and one-click replay. The field guide above shows the 5 Shopify paths the upcoming parser will surface — use it as a cheat sheet while you wire up your handler.

HookRay vs Generic Webhook Testers

Capabilitywebhook.siteHookRay
Free tier✓ 100 req✓ 100 req/mo
No signup required
Shopify-specific field parsing
One-click replay✓ (Pro)✓ Free
30-day history$9/mo$9/mo
Persistent URLs$9/mo$9/mo

See the broader comparison in The 7 Best Webhook Testing Tools (2026).

Start Testing Shopify Webhooks Now

Free, no signup. Raw capture and replay included; Shopify smart parsing previewed above.

Get a Free Webhook URL

Deeper Shopify Webhook Resources

Testers for Other Services