← Fjármál og gjaldmiðlar

VSK reiknivél

GET /vat/calculate

Reiknaðu VSK-upphæð og heildarverð (nettó + VSK) fyrir tiltekna upphæð og land. Beitir sjálfkrafa réttu VSK-hlutfalli fyrir tilgreint ESB/EES-land. Umbreytir valfrjálst heildinni í annan gjaldmiðil með lifandi gengi. Fullkomið til að smíða verðreikna, samantektir í afgreiðslukörfu og reikningsrafala sem þurfa að sýna nettóupphæð, VSK og heildarsummu í gjaldmiðlinum sem viðskiptavinurinn kýs.

Sjáðu það myndrænt

Breytur

amount nauðsynlegt

Net amount

country nauðsynlegt

Country code

currency valfrjálst

Convert total to currency

Dæmi um fyrirspurnir

Grunnnotkun
curl "https://nordapi.ee/api/v1/vat/calculate?amount=100&country=DE&currency=USD"
Calculate German VAT with USD conversion
curl "https://nordapi.ee/api/v1/vat/calculate?amount=100&country=DE&currency=USD"
Calculate Norwegian VAT on a product
curl "https://nordapi.ee/api/v1/vat/calculate?amount=499&country=NO"
Calculate French VAT converted to GBP
curl "https://nordapi.ee/api/v1/vat/calculate?amount=250&country=FR&currency=GBP"

Lifandi svar

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

Dæmi um svar

{"success":true,"net_amount":100.0,"vat_rate":19.0,"vat_amount":19.0,"total_amount":119.0,"converted_total":137.50}