← Intelligenz-Mashups

Digitaler-Nomade-Wert

GET /mashup/nomad/score

Berechnen Sie einen Lebensqualitäts-Score für jede Stadt für Digital Nomads, der Wetterqualität, Lebenshaltungskosten (PPP-angepasst), Indikatoren der Internetinfrastruktur, Gesundheitsversorgungsqualität, Sicherheit und Visafreundlichkeit kombiniert. Geben Sie optional Ihr monatliches Gehalt an, um Kaufkraftschätzungen zu sehen. Liefert einen Gesamtwert und eine Aufschlüsselung nach Kategorie. Ideal für Plattformen der Digital-Nomad-Community, Suchwerkzeuge für Remote-Work-Reiseziele und Tools zur Umzugsplanung.

Sehen Sie es visualisiert

Parameter

city erforderlich

City name

home optional Standard: US

Home country

salary optional

Monthly salary

Beispielanfragen

Grundlegende Verwendung
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-Antwort

{
  "city": "lisbon",
  "conditions": {
    "air_quality": {
      "european_aqi": 26,
      "pm10": 15.3,
      "pm2_5": 10.3,
      "us_aqi": 40
    },
    "sun": {
      "astronomical_twilight_begin": "2026-08-12T04:07:35+00:00",
      "astronomical_twilight_end": "2026-08-12T21:15:37+00:00",
      "civil_twilight_begin": "2026-08-12T05:19:18+00:00",
      "civil_twilight_end": "2026-08-12T20:03:54+00:00",
      "day_length": 49814,
      "nautical_twilight_begin": "2026-08-12T04:44:38+00:00",
      "nautical_twilight_end": "2026-08-12T20:38:34+00:00",
      "solar_noon": "2026-08-12T12:41:36+00:00",
      "sunrise": "2026-08-12T05:46:29+00:00",
      "sunset": "2026-08-12T19:36:43+00:00"
    },
    "timezone": {
      "date": "08/12/2026",
      "datetime": "2026-08-12T08:00:36.6224809",
      "day_of_week": "Wednesday",
      "time": "08:00",
      "timezone": "Europe/Lisbon",
      "utc_offset": null
    },
    "vat_rate": 23.0,
    "weather": {
      "humidity": 83,
      "temperature_c": 20.9,
      "wind_speed_kmh": 6.5
    }
  },
  "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": null
  },
  "life_quality": {
    "gdp_per_capita": 29292.2421,
    "life_expectancy": 82.2805
  },
  "scores": {
    "air_quality": 9.0,
    "cost_of_living": 9.7,
    "health_safety": 9.7,
    "overall": 9.6,
    "weather": 10.0
  },
  "success": true,
  "upcoming_holidays": [
    {
      "date": "2026-08-15",
      "name": "Assumption Day"
    },
    {
      "date": "2026-10-05",
      "name": "Republic Day"
    },
    {
      "date": "2026-11-01",
      "name": "All Saints Day"
    },
    {
      "date": "2026-12-01",
      "name": "Restoration of Independence"
    },
    {
      "date": "2026-12-08",
      "name": "Immaculate Conception"
    }
  ]
}