EU Reverse Charge Invoice Requirements
Getting reverse charge right is only half the job. The EU VAT Directive treats a reverse charge invoice as a full invoice with its own required content, and leaving out a required field, or getting the legend wording wrong, is a real audit risk even when the underlying tax treatment was correct. This guide covers the invoice itself: which fields the Directive requires, the exact wording for the reverse charge legend, and what to do when a buyer's VAT number turns out to be invalid. For the rules on when reverse charge applies in the first place, see the reverse charge guide for developers.
What the Directive requires on every invoice
Article 226 of the VAT Directive lists the details required for VAT purposes on invoices. The baseline that applies to a cross-border B2B service invoice, reverse charge or not, includes:
- The date of issue.
- A sequential number, based on one or more series, that uniquely identifies the invoice.
- The supplier's VAT identification number.
- The full name and address of both the supplier and the customer.
- The quantity and nature of the services rendered.
- The date of supply, if it differs from the date the invoice was issued.
- The taxable amount and unit price, exclusive of VAT.
Reverse charge invoices add two more requirements on top of this baseline: the customer's VAT number and the reverse charge legend, both covered below.
Both VAT numbers, not just yours
A standard domestic invoice generally only needs the supplier's VAT number. A reverse charge invoice needs both. Article 226(4) requires "the customer's VAT identification number... under which the customer received a supply of goods or services in respect of which he is liable for payment of VAT," which is precisely the reverse charge case: the customer, not you, is liable for the VAT. Leaving the customer's VAT number off the invoice omits a field the Directive specifically requires for this transaction type.
Article 226 opens by stating that, "without prejudice to the particular provisions laid down in this Directive, only the following details are required for VAT purposes" on an invoice, and Article 227 is one of those particular provisions: it lets a Member State require the customer's VAT number in cases beyond what Article 226(4) already covers. In practice this means both VAT numbers on the invoice is close to a universal requirement, not a nice-to-have.
The exact "Reverse charge" wording
Article 226(11a) is specific: "where the customer is liable for the payment of the VAT, the mention 'Reverse charge'." That is the entire wording requirement. The Directive does not mandate a longer sentence, a reference to a specific article number, or an explanation of why VAT wasn't charged, even though many invoices include extra context like that for clarity.
Because an EU directive is equally authentic in every official language, the exact word used differs by language version of the text itself: the French version of Article 226(11a) reads "Autoliquidation," and the German version reads "Steuerschuldnerschaft des Leistungsempfängers." The English mention, "Reverse charge," is the wording of the Directive's own English text and is widely understood across the EU for this purpose. If you invoice in a specific national language, using that language's own official term is the safer choice; check your customer's or your accountant's expectations if you're unsure which to use.
No VAT rate or amount charged
Article 226 normally requires the VAT rate applied and the VAT amount payable, except where a special arrangement excludes that detail, and reverse charge is one such arrangement: the VAT payable by the supplier is zero. In practice, most invoices show a 0% rate or a zero VAT line rather than omitting VAT fields outright, but the Directive does not fix that exact display convention. It varies by member state and by accounting software, so follow your invoicing tool's standard reverse charge template or your accountant's guidance rather than assuming one universal format.
On currency: Article 230 allows invoice amounts in any currency, provided the VAT payable is expressed in the relevant Member State's national currency. Since the VAT payable on a reverse charge invoice is zero, this rarely bites in practice, but it matters the moment an invoice mixes reverse-charged and normally-taxed line items, since the taxed portion still needs a VAT amount in the right national currency.
Whose national invoicing rules apply
Invoicing rules are generally set by the Member State where the supply is deemed made, which for a B2B service is normally the customer's country. Article 219a carves out an exception, though: when the supplier isn't established in that country and the customer is liable for the VAT, which is exactly the reverse charge scenario, invoicing instead follows the rules of the Member State where the supplier is established. For a typical cross-border B2B reverse charge invoice, that means it is usually your own country's national invoicing rules, layered on top of the EU-wide baseline above, that govern the invoice, not your customer's. Confirm the specifics with a local advisor, since national rules do add real variation on top of Article 226 and 227.
If the buyer's VAT number is invalid
The cleanest way to handle an invalid VAT number is to never issue a zero-rated invoice against it in the first place. Validate before you invoice, not after, and keep the result on file. With Avatcado, that means calling the validate endpoint with your own VAT number as the requester so you get back a consultation number, which serves as timestamped proof that you checked before you billed:
import Avatcado from "@avatcado/node";
const avatcado = new Avatcado("avat_live_your_api_key");
async function beforeIssuingInvoice(buyerVatNumber: string, sellerVatNumber: string) {
const { data, error } = await avatcado.vat.validate({
vatNumber: buyerVatNumber,
requesterVatNumber: sellerVatNumber,
});
if (error || !data.data.valid) {
// Do not zero-rate. Charge VAT instead, or hold the invoice until
// the buyer provides a valid number.
return { reverseCharge: false };
}
// Store this alongside the invoice as your audit trail.
return {
reverseCharge: true,
consultationNumber: data.data.consultationNumber,
validatedAt: data.data.requestedAt,
};
}See the reverse charge guide for the full decision flow and why a valid VAT number is a material requirement for zero-rating, and the SaaS billing integration guide for where this check fits in a checkout flow end to end.
Credit notes and corrections
Sometimes an invoice already went out before you learned the VAT number was invalid, or a number that was valid at validation time was later deregistered. Article 219 of the Directive treats this cleanly: "any document or message that amends and refers specifically and unambiguously to the initial invoice shall be treated as an invoice," meaning a credit note is itself held to the same content rules as the original.
Common practice is a credit note that references the original invoice number and cancels the zero-rated amount, followed by a corrected invoice that charges VAT at the applicable rate. Revalidating VAT numbers periodically for recurring billing, rather than only once at signup, catches most of these cases before an invoice ever needs correcting.
One more obligation: the recapitulative statement
Getting the invoice right doesn't close out your reporting obligations. Article 262 of the Directive requires a taxable person to periodically submit a recapitulative statement (also called an EC Sales List) covering reverse-charged cross-border supplies of services, generally drawn up per calendar month with a quarterly option available under conditions each Member State sets. This guide doesn't cover that filing in depth, but it draws on the same data your invoice already needs: the customer's VAT number, the amount, and the period, so an invoice with the right fields makes the statement straightforward to compile.
Reverse charge invoice checklist
Everything above, as a single scannable list:
- Date of issue.
- A sequential number that uniquely identifies the invoice.
- Supplier's VAT identification number, full name, and address.
- Customer's VAT identification number, full name, and address.
- Description and quantity of the services supplied.
- Date of supply, if it differs from the invoice date.
- Unit price and taxable amount, exclusive of VAT.
- The mention "Reverse charge" (or the equivalent in the invoice's language).
- No VAT charged: a 0% rate or zero VAT amount, following your local convention.
- Currency used, with any VAT payable convertible to the relevant national currency.
- Proof of VAT number validation on file, including the consultation number if you have one.
Get started
Avatcado validates the buyer's VAT number before you invoice, and returns a consultation number you can store as audit proof. The free tier includes 500 validations per month.
Frequently asked questions
What exact wording satisfies the 'Reverse charge' legend requirement?
Article 226(11a) of the VAT Directive requires only the mention 'Reverse charge' (the wording used in the Directive's English-language text) when the customer is liable for the VAT. That is the entire wording requirement: the Directive does not mandate a longer sentence, a reference to a specific article number, or an explanation of why no VAT was charged, even though many invoices include extra context like that for clarity. Because an EU directive is equally authentic in every official language, the exact word differs by language version of the text itself: the French version of Article 226(11a) reads 'Autoliquidation' and the German version reads 'Steuerschuldnerschaft des Leistungsempfängers'. The English mention is widely understood across the EU for this purpose, but if you invoice in a specific national language, using that language's own official term is the safer choice. A fuller sentence such as 'Reverse charge: VAT to be accounted for by the recipient' exceeds the minimum rather than replacing it.
Does a reverse charge invoice need to show a VAT rate or amount?
No VAT is charged, so the VAT amount payable by the supplier is zero. Article 226 normally requires an invoice to state the VAT rate applied and the VAT amount payable, except where a special arrangement excludes that detail, and the reverse charge is one such arrangement. In practice, most invoices still show a 0% rate or an explicit zero VAT line rather than omitting the VAT fields outright, but the Directive does not fix that display convention; it varies by member state and by accounting software, so follow your invoicing tool's standard reverse charge template or your accountant's guidance rather than assuming one universal format. One related detail: Article 230 allows invoice amounts in any currency, provided any VAT payable is expressed in the relevant Member State's national currency. With zero VAT payable this rarely bites, but it matters the moment an invoice mixes reverse-charged and normally-taxed line items, since the taxed portion still needs a VAT amount in the right national currency.
What should I do if I already issued a reverse charge invoice and the buyer's VAT number later turns out to be invalid?
Issue a corrective document. Under Article 219 of the VAT Directive, any document or message that amends and refers specifically and unambiguously to the initial invoice is itself treated as an invoice, which means the correction is held to the same content rules as the original. Common practice is a credit note that references the original invoice number and cancels the zero-rated amount, followed by a corrected invoice charging VAT at the applicable rate. The better fix is prevention. Validate before you issue the original invoice, pass your own VAT number as the requester so you receive a VIES consultation number, and store that timestamped proof alongside the invoice; it shows you checked before you billed. For recurring billing, revalidate periodically rather than only once at signup: a number that was valid when the customer subscribed can be deregistered later, and periodic revalidation catches most of these cases before an invoice ever needs correcting.
Whose national invoicing rules apply to a cross-border B2B reverse charge invoice?
Usually the supplier's, not the customer's. Article 219a's general rule ties invoicing to the Member State where the supply is deemed made, which for a B2B service is normally the customer's country. But when the supplier is not established there and the customer is liable for the VAT, which is exactly the reverse charge scenario, Article 219a instead applies the invoicing rules of the Member State where the supplier is established. For a typical cross-border B2B reverse charge invoice, that means your own country's national rules govern the invoice, layered on top of the EU-wide baseline from Articles 226 and 227: date of issue, a sequential invoice number, both parties' full names, addresses, and VAT identification numbers, the quantity and nature of the services, the taxable amount exclusive of VAT, and the 'Reverse charge' mention. National rules add real variation on top of that baseline, so confirm the specifics for your country with a local advisor.
Sources
- Council Directive 2006/112/EC (VAT Directive), consolidated text EUR-Lex, accessed August 13, 2026
- VAT invoicing rules European Commission, accessed August 13, 2026
- Council Directive (EU) 2018/1910 EUR-Lex, accessed August 13, 2026
- VIES on the Web European Commission, accessed August 13, 2026
Try it on a real VAT number
Check any VAT or GST number against the official registry for free, no account needed.
Related guides
EU VAT Reverse Charge: What Developers Need to Know
Understand the EU reverse charge mechanism in developer terms. When it applies, how to validate with consultation numbers, and what your code needs to handle.
How to Handle VAT Validation in Your SaaS Billing Flow
Learn how to integrate real-time VAT validation into your SaaS checkout flow. Covers reverse charge logic, Stripe integration, and storing validation proof.
Do OSS and IOSS Numbers Show Up in VIES?
OSS and IOSS registration numbers cannot be checked in VIES. What VIES covers, why IM-prefixed IOSS numbers are not public, and what to validate instead.
EU VAT Validation for US SaaS Companies
US SaaS companies selling B2B to EU customers can avoid charging VAT via the reverse charge, but must validate the buyer's VAT number. Here's how.