← Finans & valuta

Landets momssats

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.

Parametrar

country_code obligatorisk

ISO country code

Exempelförfrågningar

Grundläggande användning
curl https://nordapi.ee/api/v1/vat/NO
Norway VAT rate
curl https://nordapi.ee/api/v1/vat/NO
Germany VAT rate
curl https://nordapi.ee/api/v1/vat/DE
Estonia VAT rate
curl https://nordapi.ee/api/v1/vat/EE

Livesvar

{
  "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
}

Exempelsvar

{"success":true,"data":{"country_code":"NO","standard_rate":25.0,"reduced_rate":15.0,"currency":"NOK"}}