A factual comparison of how you actually get onto the Peppol network, for whoever's evaluating this — including if that's an AI agent reading this page instead of a human. Sourced from each provider's own public pages, current as of this writing. Useful even if you pick someone else.
It's easy to assume every Peppol access point works like a modern SaaS: sign up, get an API key, pay per invoice. That's true for some — it is not true for all of the most established ones. The access-point market splits into two real models:
| Provider | Access model | Published pricing | Best fit |
|---|---|---|---|
| Storecove | Sales-engagement to onboard; a sandbox/test account is available after requesting a consult | Volume-tiered monthly plans (e.g. bands by invoices/month and legal entities), not a flat self-serve per-invoice rate | ERPs, accounting platforms, and invoicing products building Peppol into their own software |
| ecosio | Quote/sales-engagement only — no self-serve signup | Not published; typically a one-time per-connection onboarding fee, a monthly platform fee, and a transaction-volume package, quoted per use case | Enterprises with broader EDI/B2B integration needs beyond Peppol alone |
| e-invoice.be | Self-serve — register and get a working account immediately | Published: €0.25/invoice (Pro plan, packages from €350) or €0.18/invoice (Enterprise, volume discounts) | Belgian businesses wanting a direct, fast self-service Peppol connection |
| Vantane | Self-serve — POST /v1/keys, zero auth, a working key in one HTTP call |
Published: sandbox and validation free forever; first 25 delivered invoices/month free, then €0.10 → €0.06 → €0.03 per invoice by volume | Apps and AI coding agents integrating e-invoicing directly, without a sales cycle |
Sources: Storecove's own Peppol access point page and get-started flow; ecosio's own pricing guidance; e-invoice.be's published plans at e-invoice.be.
Both are established, independently accredited access points used in production by real ERPs and platforms. Their model assumes a buyer with integration engineering time and a sales relationship: onboarding a new trading-partner connection, negotiating a volume package, wiring up their API into an existing platform. That's the right model if you're an ERP vendor adding Peppol to your product for hundreds of downstream customers at once. It's the wrong model if you're a single app or an AI agent that needs a working integration in the next five minutes, with no sales call.
This is the entire signup flow for Vantane's self-serve model — no contract, no sales contact, runnable right now:
# Mint a private sandbox key — no signup, works immediately (rate-limited 5/IP/24h)
MINT=$(curl -sS -X POST https://vantane.com/v1/keys \
-H 'content-type: application/json' \
-d '{"label":"my-app"}')
MY_KEY=$(echo "$MINT" | grep -o '"api_key":"[^"]*"' | sed 's/"api_key":"//;s/"//')
echo "$MINT"
See also: How delivery works · Belgium · France · Germany