GET /mashup/ecommerce/price
Calculez les prix internationaux des produits pour e-commerce, combining currency conversion, local VAT/tax rates, et parité de pouvoir d'achat adjustments. Enter a product price et source currency, specify tarobtenir countries, et obtenir localized prices avec tax included. Utile pour les SaaS companies setting regional pricing, e-commerce platforms avec international customers, et market rerechercher tools comparing effective prices à travers borders.
price
requis
Price
from_currency
requis
Currency
to
requis
Target countries
| Nom | Requis | Par défaut | Description |
|---|---|---|---|
price |
Oui | - | Price |
from_currency |
Oui | - | Currency |
to |
Oui | - | 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": 85.9,
"country": "Germany",
"currency": "EUR",
"exchange_rate": 0.86767896,
"is_holiday_today": true,
"ppp_analysis": {
"fair_price_local": 60.21,
"note": "Price may feel expensive to local consumers",
"perception_index": 1.43
},
"shipping_alert": "Today is a public holiday. Expect shipping delays.",
"upcoming_holidays": [
{
"date": "2026-04-05",
"name": "Easter Sunday"
},
{
"date": "2026-04-06",
"name": "Easter Monday"
}
],
"vat": {
"amount": 16.32,
"rate": 19.0,
"total": 102.22
}
},
{
"code": "JP",
"converted_price": 15800.49,
"country": "Japan",
"currency": "JPY",
"exchange_rate": 159.60086768,
"is_holiday_today": false,
"ppp_analysis": {
"fair_price_local": 1492555.39,
"note": "Price may feel like a good deal locally",
"perception_index": 0.01
},
"shipping_alert": null,
"upcoming_holidays": [
{
"date": "2026-04-29",
"name": "Shōwa Day"
},
{
"date": "2026-05-04",
"name": "Constitution Memorial Day"
}
],
"vat": null
}
],
"source_currency": "USD",
"source_price": 99.0,
"success": true
}