Presets per provider, verdicts per request
Choose Stripe on an endpoint and every capture is checked against your signing secret: a verified or unsigned verdict on the row, filterable like any other field. Providers without a preset get manual HMAC configuration with the same verdicts.
The proof lives with the payload
Every signature header is stored verbatim with its request: Stripe-Signature, X-Hub-Signature-256, all of them. Turn a preset on and history verifies retroactively; the shelf you already filled becomes evidence.
- Presets for Stripe, GitHub, Shopify, Paddle, Twilio and more
- Verified-state filters in the explorer and the API
- Complete signature headers on every stored request, always
# the headers are already in your vault: "Stripe-Signature": "t=1757030400,v1=8f3a2c41d9e6…" # HMAC-SHA256 over "{timestamp}.{raw_body}" signed = hmac_sha256(secret, t + "." + body) assert signed == v1 # sender proven
Prove every sender.
Verdicts on every row, history included. Free tier, no card.