GET /vat/calculate
Berechnen Sie den Mehrwertsteuerbetrag und den Gesamtpreis (netto + MwSt.) für einen bestimmten Betrag und ein bestimmtes Land. Wendet automatisch den korrekten Mehrwertsteuersatz für das angegebene EU-/EWR-Land an. Konvertiert den Gesamtbetrag optional mit Live-Wechselkursen in eine andere Währung. Perfekt zum Erstellen von Preisrechnern, Kassenübersichten und Rechnungsgeneratoren, die Nettobetrag, MwSt. und Gesamtsumme in der bevorzugten Währung des Kunden anzeigen müssen.
amount
erforderlich
Net amount
country
erforderlich
Country code
currency
optional
Convert total to currency
| Name | Erforderlich | Standard | Beschreibung |
|---|---|---|---|
amount |
Ja | - | Net amount |
country |
Ja | - | Country code |
currency |
Nein | - | Convert total to currency |
curl "https://nordapi.ee/api/v1/vat/calculate?amount=100&country=DE¤cy=USD"
curl "https://nordapi.ee/api/v1/vat/calculate?amount=100&country=DE¤cy=USD"
curl "https://nordapi.ee/api/v1/vat/calculate?amount=499&country=NO"
curl "https://nordapi.ee/api/v1/vat/calculate?amount=250&country=FR¤cy=GBP"
{
"country": "Germany",
"country_code": "DE",
"local_currency": "EUR",
"net_amount": 100.0,
"success": true,
"total_amount": 119.0,
"vat_amount": 19.0,
"vat_rate": 19.0
}
{"success":true,"net_amount":100.0,"vat_rate":19.0,"vat_amount":19.0,"total_amount":119.0,"converted_total":137.50}