← Intelligenz-Mashups

Gehaltsvergleich

GET /mashup/salary/compare

Vergleichen Sie, was ein Gehalt in verschiedenen Ländern wert ist, nach Anpassung an die Kaufkraftparität (PPP). Geben Sie einen Gehaltsbetrag und ein Herkunftsland ein und erhalten Sie das PPP-äquivalente Gehalt in mehreren Zielländern. Ein US-Gehalt von 100.000 $ kann aufgrund höherer Kosten in Norwegen die Kaufkraft von 60.000 $ haben oder aufgrund niedrigerer Kosten in Thailand 150.000 $. Unverzichtbar für Verhandlungen über Remote-Arbeit, Umzugsplanung und HR-Tools zur Festlegung internationaler Vergütungstabellen.

Parameter

amount erforderlich

Salary

from erforderlich

Origin country

to erforderlich

Target countries (comma-sep)

Beispielanfragen

Grundlegende Verwendung
curl "https://nordapi.ee/api/v1/mashup/salary/compare?amount=85000&from=US&to=NO,TH,DE"
Compare $85K US salary across countries
curl "https://nordapi.ee/api/v1/mashup/salary/compare?amount=85000&from=US&to=NO,TH,DE"
Compare Norwegian salary to European countries
curl "https://nordapi.ee/api/v1/mashup/salary/compare?amount=600000&from=NO&to=SE,DK,DE,GB"
Compare UK salary to Asian markets
curl "https://nordapi.ee/api/v1/mashup/salary/compare?amount=50000&from=GB&to=JP,SG,IN"

Live-Antwort

{
  "comparisons": [
    {
      "code": "NO",
      "country": null,
      "currency": "NOK",
      "inflation": 3.1453,
      "inflation_differential": 0.2,
      "nominal_conversion": null,
      "ppp_equivalent": {
        "equivalent_salary_usd": 777078.5,
        "interpretation": "You need 914.0% of your salary to maintain the same standard of living",
        "purchasing_power_index": 0.109
      },
      "salary_vs_local_avg_pct": 97.9,
      "vat": 25.0
    },
    {
      "code": "TH",
      "country": null,
      "currency": "THB",
      "inflation": 1.3658,
      "inflation_differential": -1.58,
      "nominal_conversion": null,
      "ppp_equivalent": {
        "equivalent_salary_usd": 891854.0,
        "interpretation": "You need 1049.0% of your salary to maintain the same standard of living",
        "purchasing_power_index": 0.095
      },
      "salary_vs_local_avg_pct": 1157.0,
      "vat": null
    },
    {
      "code": "DE",
      "country": null,
      "currency": "EUR",
      "inflation": 2.2565,
      "inflation_differential": -0.69,
      "nominal_conversion": null,
      "ppp_equivalent": {
        "equivalent_salary_usd": 59576.5,
        "interpretation": "You only need 70.0% of your salary to maintain the same standard of living",
        "purchasing_power_index": 1.427
      },
      "salary_vs_local_avg_pct": 151.5,
      "vat": 19.0
    }
  ],
  "origin": {
    "code": "US",
    "currency": "USD",
    "gdp_per_capita": 84534.0408,
    "period": "annual",
    "salary": 8.5e4,
    "salary_vs_avg_pct": 100.6
  },
  "success": true
}