Croatia VAT number: format and validation
Format
HR followed by 11 digits. The local term is PDV identifikacijski broj (PDV ID broj, Croatian).
Pattern: /^\d{11}$/
- The 11 digits are the holder's OIB (osobni identifikacijski broj), Croatia's universal person and company identifier used for all taxes
- The VAT ID is simply HR plus the OIB, but it is only active once the holder is VAT-registered with Porezna uprava
Example of a registered number: HR81793146560
Check digit
Croatia VAT numbers carry a check digit (ISO 7064 MOD 11,10): The final digit is an ISO 7064 MOD 11,10 check computed over the first ten digits.
Check a Croatia VAT number
Validated live against the Porezna uprava (Tax Administration) (official register).
Enter a VAT number to see the live API response
Validate via API
The same validation as an API call, with the example number above:
curl "https://api.avatcado.com/v1/validate?vat_number=HR81793146560" \
-H "Authorization: Bearer avat_live_your_api_key"import Avatcado from "@avatcado/node";
const avatcado = new Avatcado("avat_live_your_api_key");
const { data, error } = await avatcado.vat.validate({
vatNumber: "HR81793146560",
});
if (data?.data.valid) {
console.log(`Registered: ${data.data.company?.name}`);
}Free tier includes 500 validations per month. Get an API key or read the API documentation.
Frequently asked questions
What is the VAT registration threshold in Croatia?
EUR 60,000 of taxable supplies in a calendar year since 1 January 2025, raised from EUR 40,000. Registration is with the Croatian Tax Administration (Porezna uprava).
How do I look up a Croatian VAT number?
The court register (sudreg.pravosudje.hr) shows every company's OIB, and VAT registration status can be confirmed via VIES. The same OIB appears on invoices for domestic purposes.
Related guides
- How to Validate EU VAT Numbers Programmatically
- VIES API Guide: EU VAT Validation Explained
- EU VAT Reverse Charge: What Developers Need to Know
VAT rate in Croatia
The standard VAT rate in Croatia is 25%. Reduced rates: 13%, 5%. See all Croatia VAT rates.
Sources
- Porezna uprava Ministry of Finance, Croatia, accessed August 13, 2026
- Sudski registar (court register) Ministry of Justice, Croatia, accessed August 13, 2026
- VIES VAT validation European Commission, accessed August 13, 2026