← Intelligence Mashups

Inflation-Adjusted Travel Cost

GET /mashup/travel/inflation

Assess travel destination value: combines exchange rates, inflation data, and purchasing power parity to show whether a destination is getting cheaper or more expensive relative to your home country.

Parameters

destination required

Destination country code

home optional

Home country code (default US)

Example Requests

Basic usage
curl "https://nordapi.ee/api/v1/mashup/travel/inflation?destination=EE&home=US"

Live Response

{
  "cost_assessment": "Affordable destination",
  "currencies": {
    "destination": "EUR",
    "home": "USD"
  },
  "destination": "EE",
  "exchange_rate": 0.86767896,
  "generated_at": "2026-04-05T20:47:29.185199Z",
  "home": "US",
  "inflation": {
    "destination": 3.5206,
    "home": 2.9495
  },
  "purchasing_power_ratio": 0.58,
  "success": true
}