GET /vat/:country_code
Erhalten Sie die Mehrwertsteuersatz-Details for a specific EU/EEA country by its ISO country code. Liefert die standard rate, reduced rate, und the country's local currency. Ideal für checkout flows where you know the customer's country und need to calculate the correct tax, oder for displaying country-specific pricing information on product pages.
country_code
erforderlich
ISO country code
| Name | Erforderlich | Standard | Beschreibung |
|---|---|---|---|
country_code |
Ja | - | ISO country code |
curl https://nordapi.ee/api/v1/vat/NO
curl https://nordapi.ee/api/v1/vat/NO
curl https://nordapi.ee/api/v1/vat/DE
curl https://nordapi.ee/api/v1/vat/EE
{
"data": {
"country_code": "NO",
"country_name": "Norway",
"currency": "NOK",
"parking_rate": null,
"reduced_rate": 15.0,
"reduced_rate_2": 12.0,
"standard_rate": 25.0,
"super_reduced_rate": null
},
"success": true
}
{"success":true,"data":{"country_code":"NO","standard_rate":25.0,"reduced_rate":15.0,"currency":"NOK"}}