← Intelligence Mashups

Digital Nomad Score

GET /mashup/nomad/score

Calculate a livability score for any city for digital nomads, combining weather quality, cost of living (PPP-adjusted), internet infrastructure indicators, healthcare quality, safety, and visa friendliness. Optionally provide your monthly salary to see purchasing power estimates. Returns a composite score and breakdown by category. Ideal for digital nomad community platforms, remote work destination finders, and relocation planning tools.

See it visualized

Parameters

city required

City name

home optional default: US

Home country

salary optional

Monthly salary

Example Requests

Basic usage
curl "https://nordapi.ee/api/v1/mashup/nomad/score?city=lisbon&salary=5000"
Nomad score for Lisbon with $5000 salary
curl "https://nordapi.ee/api/v1/mashup/nomad/score?city=lisbon&salary=5000"
Nomad score for Bangkok from Norway
curl "https://nordapi.ee/api/v1/mashup/nomad/score?city=bangkok&home=NO&salary=8000"
Nomad score for Berlin
curl "https://nordapi.ee/api/v1/mashup/nomad/score?city=berlin"
Nomad score for Bali on a budget
curl "https://nordapi.ee/api/v1/mashup/nomad/score?city=bali&salary=3000"

Live Response

{
  "city": "lisbon",
  "conditions": {
    "air_quality": {
      "european_aqi": 31,
      "pm10": 21.9,
      "pm2_5": 16.2,
      "us_aqi": 57
    },
    "sun": {
      "astronomical_twilight_begin": "2026-05-22T03:28:28+00:00",
      "astronomical_twilight_end": "2026-05-22T21:38:01+00:00",
      "civil_twilight_begin": "2026-05-22T04:48:20+00:00",
      "civil_twilight_end": "2026-05-22T20:18:09+00:00",
      "day_length": 52307,
      "nautical_twilight_begin": "2026-05-22T04:10:29+00:00",
      "nautical_twilight_end": "2026-05-22T20:55:59+00:00",
      "solar_noon": "2026-05-22T12:33:14+00:00",
      "sunrise": "2026-05-22T05:17:21+00:00",
      "sunset": "2026-05-22T19:49:08+00:00"
    },
    "timezone": {
      "date": "05/22/2026",
      "datetime": "2026-05-22T10:09:19.4994295",
      "day_of_week": "Friday",
      "time": "10:09",
      "timezone": "Europe/Lisbon",
      "utc_offset": null
    },
    "vat_rate": 23.0,
    "weather": {
      "humidity": 41,
      "temperature_c": 23.7,
      "wind_speed_kmh": 4.6
    }
  },
  "cost_analysis": {
    "converted": null,
    "home_currency": "USD",
    "interpretation": "Your money goes 94.0% further here",
    "local_currency": "EUR",
    "monthly_salary": 5.0e3,
    "ppp_spending_power": 9690.0
  },
  "country": {
    "code": "PT",
    "name": "Portugal"
  },
  "life_quality": {
    "gdp_per_capita": 29292.2421,
    "life_expectancy": 82.2805
  },
  "scores": {
    "air_quality": 7.0,
    "cost_of_living": 9.7,
    "health_safety": 9.7,
    "overall": 9.1,
    "weather": 10.0
  },
  "success": true,
  "upcoming_holidays": [
    {
      "date": "2026-06-01",
      "name": "Azores Day"
    },
    {
      "date": "2026-06-04",
      "name": "Corpus Christi"
    },
    {
      "date": "2026-06-10",
      "name": "National Day"
    },
    {
      "date": "2026-07-01",
      "name": "Madeira Day"
    },
    {
      "date": "2026-08-15",
      "name": "Assumption Day"
    }
  ]
}