All Providers
πŸ›

Sentry Webhooks

Developer Tools

Sentry sends webhook alerts when new errors are detected, when issues are assigned or resolved, and when new releases are deployed. Used for routing alerts to Slack, PagerDuty, or custom handlers.

Webhook Events

4 event types

event_alert

Error alert triggered

issue

Issue created, resolved, or assigned

metric_alert

Metric threshold breached

installation

Integration installed or uninstalled

Signature Verification

Header
sentry-hook-signature
Method

HMAC-SHA256 of raw body using client secret

View official docs

Sample Payload

event_alert

application/json
{
  "action": "created",
  "installation": {
    "uuid": "install-abc-123"
  },
  "data": {
    "issue": {
      "id": "12345678",
      "title": "TypeError: Cannot read properties of undefined",
      "culprit": "app/handlers/webhook.js",
      "status": "unresolved",
      "level": "error",
      "count": "42",
      "userCount": 7
    }
  },
  "actor": {
    "type": "application",
    "id": "sentry",
    "name": "Sentry"
  }
}

Send a Sample Sentry Payload

Pick an event, enter your endpoint URL (or localhost), and fire a realistic Sentry payload with one click β€” no Sentry account needed.

Test Sender

Loading samples…

No signup

Capture & Inspect Sentry Webhooks Live

Get a free public HTTPS endpoint below, point Sentry at it, and watch events arrive in real time. Use the forwarding rule to relay them straight to your local server.

Live demo β€” no signup required

See it work in real time

Click below to get a live webhook URL instantly. Paste it anywhere β€” Stripe, GitHub, Postman β€” and watch events arrive right here.

Expires in 1 hour Β· No account needed

Forward Sentry webhooks to localhost

  1. Click Create live endpoint above to get a public HTTPS URL
  2. Paste the URL into Sentry's webhook settings
  3. In the Forwarding tab, add a rule: target = http://localhost:3000/webhooks/sentry
  4. Fire a test event from Sentry β€” it arrives in the inspector and hits your local handler simultaneously

Ready to test your Sentry webhook handler?

Free HTTPS endpoint with forwarding, retry, and event replay. No install, no CLI, no deploy.

Create Free Account