GET /mashup/ecommerce/price
Berechnen Sie internationale Produktpreise für E-Commerce, indem Sie Währungsumrechnung, lokale Mehrwertsteuer-/Steuersätze und Anpassungen der Kaufkraftparität kombinieren. Geben Sie einen Produktpreis und eine Ausgangswährung ein, spezifizieren Sie Zielländer und erhalten Sie lokalisierte Preise inklusive Steuern. Nützlich für SaaS-Unternehmen, die regionale Preise festlegen, E-Commerce-Plattformen mit internationalen Kunden und Marktforschungstools, die effektive Preise grenzüberschreitend vergleichen.
price
erforderlich
Price
from_currency
erforderlich
Currency
to
erforderlich
Target countries
| Name | Erforderlich | Standard | Beschreibung |
|---|---|---|---|
price |
Ja | - | Price |
from_currency |
Ja | - | Currency |
to |
Ja | - | Target countries |
curl "https://nordapi.ee/api/v1/mashup/ecommerce/price?price=99&from_currency=USD&to=DE,JP"
curl "https://nordapi.ee/api/v1/mashup/ecommerce/price?price=99&from_currency=USD&to=DE,JP"
curl "https://nordapi.ee/api/v1/mashup/ecommerce/price?price=49&from_currency=EUR&to=NO,SE,DK"
curl "https://nordapi.ee/api/v1/mashup/ecommerce/price?price=29&from_currency=GBP&to=US,DE,JP,AU"
{
"markets": [
{
"code": "DE",
"converted_price": null,
"country": "Germany",
"currency": "EUR",
"exchange_rate": null,
"is_holiday_today": false,
"ppp_analysis": null,
"shipping_alert": null,
"upcoming_holidays": [
{
"date": "2026-05-24",
"name": "Pentecost"
},
{
"date": "2026-05-25",
"name": "Whit Monday"
}
],
"vat": null
},
{
"code": "JP",
"converted_price": null,
"country": "Japan",
"currency": "JPY",
"exchange_rate": null,
"is_holiday_today": false,
"ppp_analysis": null,
"shipping_alert": null,
"upcoming_holidays": [
{
"date": "2026-07-20",
"name": "Marine Day"
},
{
"date": "2026-08-11",
"name": "Mountain Day"
}
],
"vat": null
}
],
"source_currency": "USD",
"source_price": 99.0,
"success": true
}