GET /mashup/travel/cost
Calculez un coût de voyage complet estimate entre two countries, combining currency taux de change, parité de pouvoir d'achat (PPP) adjustment, destination prévisions météo, et upcoming holidays at le destination. Converts your budobtenir en local currency et adjusts it pour local pouvoir d'achat so you know what your money is actually worth. Idéal pour les travel planning apps, budobtenir calculators, et trip comparison tools.
from
requis
Origin country
to
requis
Destination
budget
optionnel
par défaut: 1000
Budget
| Nom | Requis | Par défaut | Description |
|---|---|---|---|
from |
Oui | - | Origin country |
to |
Oui | - | Destination |
budget |
Non | 1000 | Budget |
curl "https://nordapi.ee/api/v1/mashup/travel/cost?from=US&to=JP&budget=5000"
curl "https://nordapi.ee/api/v1/mashup/travel/cost?from=US&to=JP&budget=5000"
curl "https://nordapi.ee/api/v1/mashup/travel/cost?from=NO&to=TH&budget=2000"
curl "https://nordapi.ee/api/v1/mashup/travel/cost?from=GB&to=ES"
{
"budget": {
"converted": 798004.3384,
"converted_currency": "JPY",
"original": 5.0e3,
"original_currency": "USD",
"rate": 159.60086768
},
"destination_conditions": {
"timezone": {
"date": "04/06/2026",
"datetime": "2026-04-06T05:48:07.4286954",
"day_of_week": "Monday",
"time": "05:48",
"timezone": "Asia/Tokyo",
"utc_offset": null
},
"weather": {
"humidity": 91,
"temperature_c": 6.3,
"wind_speed_kmh": 4.7
}
},
"from": {
"code": "US",
"country": "United States",
"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": "Japan",
"currency": "JPY"
},
"upcoming_holidays": [
{
"date": "2026-04-29",
"name": "Shōwa Day"
},
{
"date": "2026-05-04",
"name": "Constitution Memorial Day"
},
{
"date": "2026-05-04",
"name": "Greenery Day"
},
{
"date": "2026-05-05",
"name": "Children's Day"
},
{
"date": "2026-07-20",
"name": "Marine Day"
}
]
}