← Intelligenz-Mashups

E-Commerce-Preisgestaltung

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.

Parameter

price erforderlich

Price

from_currency erforderlich

Currency

to erforderlich

Target countries

Beispielanfragen

Grundlegende Verwendung
curl "https://nordapi.ee/api/v1/mashup/ecommerce/price?price=99&from_currency=USD&to=DE,JP"
Price a $99 product for Germany and Japan
curl "https://nordapi.ee/api/v1/mashup/ecommerce/price?price=99&from_currency=USD&to=DE,JP"
Price a EUR 49 product for Nordic markets
curl "https://nordapi.ee/api/v1/mashup/ecommerce/price?price=49&from_currency=EUR&to=NO,SE,DK"
Price a GBP product for global markets
curl "https://nordapi.ee/api/v1/mashup/ecommerce/price?price=29&from_currency=GBP&to=US,DE,JP,AU"

Live-Antwort

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