← Finanzen & Währung

Landes-Mehrwertsteuersatz

GET /vat/:country_code

Rufen Sie die Mehrwertsteuersatz-Details für ein bestimmtes EU-/EWR-Land anhand seines ISO-Ländercodes ab. Liefert den Standardsatz, ermäßigten Satz und die lokale Währung des Landes. Ideal für Checkout-Abläufe, bei denen Sie das Land des Kunden kennen und die korrekte Steuer berechnen müssen, oder zur Anzeige länderspezifischer Preisinformationen auf Produktseiten.

Parameter

country_code erforderlich

ISO country code

Beispielanfragen

Grundlegende Verwendung
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

Live-Antwort

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

Beispielantwort

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