← 智能数据整合

通胀调整后旅行费用

GET /mashup/travel/inflation

评估旅行目的地价值:结合汇率、通胀数据和购买力平价,显示目的地相对于你的本国是变得更便宜还是更贵。

参数

destination 必填

Destination country code

home 可选

Home country code (default US)

请求示例

基本用法
curl "https://nordapi.ee/api/v1/mashup/travel/inflation?destination=EE&home=US"

实时响应

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