← Fjármál og gjaldmiðlar

VSK hlutfall lands

GET /vat/:country_code

Fáðu the VAT rate details for a specific EU/EEA country by its ISO landakóða. Skilar standard rate, reduced rate, and the country's local currency. Tilvalið fyrir checkout flows where you know the customer's country and need to reiknaðu the correct tax, or for displaying country-specific pricing information on product pages.

Breytur

country_code nauðsynlegt

ISO country code

Dæmi um fyrirspurnir

Grunnnotkun
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

Lifandi svar

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

Dæmi um svar

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