GET /mashup/ecommerce/price
为电商计算国际产品定价,结合货币转换、当地增值税/税率和购买力平价调整。输入产品价格和来源货币,指定目标国家,获取含税的本地化价格。适用于设置区域定价的 SaaS 公司、拥有国际客户的电商平台和跨境比较有效价格的市场研究工具。
price
必填
Price
from_currency
必填
Currency
to
必填
Target countries
| 名称 | 必填 | 默认值 | 描述 |
|---|---|---|---|
price |
是 | - | Price |
from_currency |
是 | - | Currency |
to |
是 | - | 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
}