Documentation
Docs for everyone
B2Brouter
documentation.
From your first invoice to advanced integrations — manuals, guides, use cases, and resources in one place.
50+countries supported
22+invoice formats
Peppolaccess point since 2012
Start here
Set up your account and start invoicing
Tax reporting & B2G
Route to the right authority
For developers
Integrate without rewriting your stack.
Get started with the B2Brouter APIAuthenticate and POST your first invoice.SandboxIntegrations in a secure environment.SDKStart integrating with our PHP library.GuidesStep-by-step integration guides.Use CasesFind the right use case for your needs.Integrate without codeNo-code integration options based on file transfer.
# Create a draft invoice
curl https://api.b2brouter.net/accounts/{ACCOUNT_ID}/invoices \
-u {API_KEY}: \
-H ‘Content-Type: application/json’ \
-d ’{
“invoice”: {
“contact_id”: {CONTACT_ID},
“invoice_lines_attributes”: [{
“description”: “Consulting services”,
“quantity”: “1”,
“price”: “100”,
“taxes_attributes”: [{ “name”:“VAT”,“category”:“S”,“percent”:“21”}]
}]
}
}’
↳ 201 CreatedTools