Free, open JSON datasets for expats in the Netherlands. Salaries, cost of living, tax brackets, and more.
By ExpatNetherlandsHub.com — the complete guide to living in the Netherlands.
- Average salary by city (6 cities)
- Average salary by sector (6 sectors: tech, finance, consulting, marketing, engineering, healthcare)
- Minimum wage 2026
- 30% ruling threshold
- Tax brackets
- Rent by city (1-bed, 2-bed)
- Groceries, transport, health insurance
- 5 major cities covered
import requests
salaries = requests.get("https://expatnetherlandshub.com/api/v1/salaries.json").json()
print(f"Average salary Amsterdam: €{salaries['data']['by_city'][0]['avg_gross']:,}")const res = await fetch("https://expatnetherlandshub.com/api/v1/salaries.json");
const data = await res.json();
console.log(data.data.by_city);These datasets are also served as a free API:
- Salaries: expatnetherlandshub.com/api/v1/salaries.json
- Cost of Living: expatnetherlandshub.com/api/v1/cost-of-living.json
Full documentation: expatnetherlandshub.com/api/
- 30% Ruling Calculator
- Salary Calculator
- Cost of Living Calculator
- Health Insurance Comparison
- All 11 Free Expat Tools
Free to use. Please include a link to ExpatNetherlandsHub.com as your data source.
MIT License