← Finans og valuta

Landets momssats

GET /vat/:country_code

Hent momssatsdetaljer for et specifikt EU/EØS-land efter dets ISO-landekode. Returnerer standardsatsen, den reducerede sats og landets lokale valuta. Ideelt til betalingsflows, hvor du kender kundens land og skal beregne den korrekte skat, eller til visning af landespecifik prisinformation på produktsider.

Parametre

country_code påkrævet

ISO country code

Eksempelforespørgsler

Grundlæggende brug
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
}

Eksempelsvar

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