← Intelligenz-Mashups

Reisekostenrechner

GET /mashup/travel/cost

Berechnen Sie eine umfassende Reisekostenschätzung zwischen zwei Ländern, die Wechselkurse, Anpassung der Kaufkraftparität (PPP), Wettervorhersage am Reiseziel und bevorstehende Feiertage am Reiseziel kombiniert. Konvertiert Ihr Budget in die Landeswährung und passt es an die lokale Kaufkraft an, damit Sie wissen, was Ihr Geld tatsächlich wert ist. Perfekt für Reiseplanungs-Apps, Budgetrechner und Reisevergleichstools.

Parameter

from erforderlich

Origin country

to erforderlich

Destination

budget optional Standard: 1000

Budget

Beispielanfragen

Grundlegende Verwendung
curl "https://nordapi.ee/api/v1/mashup/travel/cost?from=US&to=JP&budget=5000"
US to Japan travel cost with $5000 budget
curl "https://nordapi.ee/api/v1/mashup/travel/cost?from=US&to=JP&budget=5000"
Norway to Thailand on a budget
curl "https://nordapi.ee/api/v1/mashup/travel/cost?from=NO&to=TH&budget=2000"
UK to Spain with default budget
curl "https://nordapi.ee/api/v1/mashup/travel/cost?from=GB&to=ES"

Live-Antwort

{
  "budget": {
    "converted": null,
    "converted_currency": "JPY",
    "original": 5.0e3,
    "original_currency": "USD",
    "rate": null
  },
  "destination_conditions": {
    "timezone": null,
    "weather": null
  },
  "from": {
    "code": "US",
    "country": null,
    "currency": "USD"
  },
  "holiday_alert": null,
  "purchasing_power": {
    "adjusted_budget": 472313.0,
    "interpretation": "Your money goes 9346.3% less far at the destination",
    "ppp_ratio": 94.4626
  },
  "success": true,
  "tax_comparison": {
    "destination_vat": null,
    "origin_vat": null
  },
  "to": {
    "code": "JP",
    "country": null,
    "currency": "JPY"
  },
  "upcoming_holidays": [
    {
      "date": "2026-09-21",
      "name": "Respect for the Aged Day"
    },
    {
      "date": "2026-09-23",
      "name": "Autumnal Equinox Day"
    },
    {
      "date": "2026-10-12",
      "name": "Sports Day"
    },
    {
      "date": "2026-11-03",
      "name": "Culture Day"
    },
    {
      "date": "2026-11-23",
      "name": "Labour Thanksgiving Day"
    }
  ]
}