How the Stripe receipt parser works
Stripe emails a receipt for every successful charge, but the useful data — the amount, the customer, the payment-intent ID — is buried in HTML. This tool reads the text you paste and pulls those fields into a clean JSON object you can copy.
It recognizes Stripe's identifiers (pi_, ch_, and
in_ tokens), monetary amounts and currencies, card brand and last
four digits, the customer email, and the payment status. It is deliberately
conservative: it only reports fields it can actually find, and never invents values.
From browser preview to production
This page is a preview of what MailFrame does at scale. The production API accepts raw MIME email (with PDF and image input planned), extracts against your own JSON schema using a hosted model, scores the confidence of each field, and delivers the result to your endpoint via an HMAC-SHA256 signed webhook with automatic retries.
See the full Stripe receipt schema, including the JSON Schema definition and webhook payload, or request early developer access.