GET /vat/:country_code
Get the VAT kurs detaljer for a specifik EU/EEA land by dess ISO landskod. Returnerar the standard kurs, reduced kurs, and the land's lokal currency. Idealiskt för checkout flows där you veta the customer's land and behöver to beräkna the correct tax, or for som visar land-specifik pricing information on product sidor.
country_code
obligatorisk
ISO country code
| Namn | Obligatorisk | Standard | Beskrivning |
|---|---|---|---|
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"}}