A Netherlands import duty and customs calculator that estimates the landed cost of goods shipped into the Netherlands from outside the EU. It applies EU customs duty on the CIF value, then the standard 21% Dutch BTW (VAT) on the duty-inclusive value, respecting the €150 duty threshold.
How it works
The landed cost is built up in order:
cifValue = goods + freight + insurance
duty = (cifValue > 150) ? cifValue * (dutyRate / 100) : 0
vatBase = cifValue + duty
vat = vatBase * (21 / 100)
landed = cifValue + duty + vat
Duty is charged on CIF; VAT is then charged on CIF plus duty, so the two compound. Below the €150 threshold, duty is waived but VAT still applies from the first euro.
Example and notes
Import goods worth 400 EUR with 40 EUR freight and 10 EUR insurance — a 450 EUR CIF value. At a 4% duty rate that is 18 EUR duty; 21% VAT on 468 EUR is 98.28 EUR; landed cost is about 566 EUR.
The correct duty rate depends on the commodity code and origin. All figures are computed locally in your browser and are not customs advice.