GET /vat/:country_code
Hae arvonlisäverokannan tiedot tietylle EU/ETA-maalle sen ISO-maakoodin perusteella. Palauttaa yleisen verokannan, alennetun verokannan ja maan paikallisen valuutan. Ihanteellinen kassaprosesseille, joissa tiedät asiakkaan maan ja sinun on laskettava oikea vero, tai maakohtaisten hintatietojen näyttämiseen tuotesivuilla.
country_code
pakollinen
ISO country code
| Nimi | Pakollinen | Oletus | Kuvaus |
|---|---|---|---|
country_code |
Kyllä | - | 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"}}