Does Stripe support Peppol? What you can and can't do
Stripe issues compliant invoices but does not generate UBL or reach a Peppol access point — here are the three realistic ways to close that gap.
No, not natively. Stripe issues invoices, collects payment and keeps your customer and tax records straight, but it does not send those invoices over the Peppol network, and there is no setting that turns that on. If a customer or a national mandate has asked you for Peppol delivery, that is the gap you have to fill. It is a smaller and more specific gap than "Stripe doesn't do e-invoicing", so it is worth being precise about where Stripe stops.
What Stripe already gives you
When you finalise an invoice in Stripe, you get a properly numbered document with your legal name, your customer's details, line items, VAT breakdown, and a PDF rendering. For a normal email-a-PDF workflow that is the whole job.
Stripe also holds the data a structured invoice needs: the company profile, the customer's country and tax ID, the currency, the totals. The raw material for a compliant Peppol document is already in the account. What is missing is the last two steps that turn that data into something the Peppol network will accept and route.
The two steps Stripe doesn't do
A Peppol invoice is not a PDF. It is a structured XML document — UBL 2.1, following the Peppol BIS Billing 3.0 profile, which is the Peppol-specific binding of the European standard EN 16931. The PDF can ride along as a human-readable attachment, but the machine-readable UBL is the actual invoice as far as the network is concerned.
Two things have to happen that Stripe has no notion of:
- Generate the UBL. Map Stripe's invoice into the correct EN 16931 fields, apply the right VAT category codes, and pass the Peppol validation rules. A document that is malformed or fails a business rule gets rejected at the door.
- Reach an access point. Peppol runs on a four-corner model: you send to your access point, it routes to the recipient's access point, and that delivers to them. Getting a document onto the network means going through a certified access point and first resolving the recipient's address in the Peppol Directory. Stripe is not a participant on that network and cannot do the lookup or the handoff.
For background on the network itself, see what is Peppol.
Three ways to close the gap
Migrate to an ERP with Peppol built in. The larger accounting and ERP suites can generate compliant e-invoices and connect to an access point. If you are already outgrowing Stripe Billing this may be worth it anyway. As a fix for one compliance requirement it is a heavy change: you move your system of record, retrain your finance workflow, and take on a migration project to solve a delivery problem.
Build the integration yourself. Access point providers expose APIs, so a capable team can wire Stripe webhooks to a service that builds the UBL, validates it, submits it, and tracks the delivery states. This keeps Stripe as the system of record. The cost is ongoing: you own UBL generation, you keep up with Peppol specification updates, and you build the monitoring to know when a send failed and why. For most small finance teams that is more than the problem is worth.
Add a thin delivery layer on top of the invoices you already issue, which bolts on the two missing steps and leaves Stripe as it is. That is what Peppost does: you connect Stripe once over OAuth, and it turns your finalised invoices and credit notes into BIS Billing 3.0 UBL and dispatches them through a certified access point, with the Stripe PDF attached. Sends are billed as prepaid credits rather than a subscription. The getting-started guide shows what the setup involves.
One limit to weigh: a delivery layer is send-only. It delivers the invoices you raise in Stripe; it does not make you a Peppol receiver or replace your accounting software. If you also need to receive structured invoices from suppliers, that is a separate capability to compare options on.
Choosing
If Stripe is working and Peppol delivery is the only missing piece, start with the lightest option that solves it and keep Stripe as your source of truth. The step-by-step walkthrough covers an actual send, and the FAQ answers the usual questions about pricing, test mode, and failed sends.