Access global health indicators, disease surveillance data, mortality statistics, and health system performance metrics from the World Health Organisation. Used in data engineering for global health analytics pipelines, pandemic monitoring systems, SDG health tracking, and building epidemiological dashboards in Python.
WHO's Global Health Observatory API provides JSON endpoints for indicator data. Engineers use `requests` against `ghoapi.azureedge.net` or download CSV files from the WHO data portal. Results include country-year observations for hundreds of health indicators.
WHO data is the authoritative source for building AI health analysis tools. Index WHO indicator time-series for a RAG system that can answer 'Which countries have the highest under-5 mortality rates?' with official global health statistics. WHO disease outbreak reports also train AI epidemic surveillance models.
# pip install requests pandas
import requests, pandas as pd
resp = requests.get(
"https://ghoapi.azureedge.net/api/WHOSIS_000001", # life expectancy
params={"$filter": "SpatialDim eq 'DEU'"}
)
df = pd.DataFrame(resp.json()["value"])[["TimeDim", "NumericValue", "SpatialDim"]]
print(df.sort_values("TimeDim").tail(10))Official dataset source
More datasets used by Python data engineers.
Access datasets on child well-being, education enrolment, nutrition, immunisation, child mortality, and child protection indicators worldwide from UNICEF. Used in data engineering for humanitarian analytics pipelines, SDG progress tracking, and building global child health indicator dashboards in Python.
UNICEF's data portal provides child-focused indicators covering mortality, nutrition, education, immunisation, child labour, and child protection for 190+ countries. Used in data engineering for humanitarian analytics pipelines, SDG child indicator tracking, and building global child welfare dashboards in Python.
The WHO Global Health Observatory offers datasets on a wide range of health-related indicators, including disease prevalence, mortality rates, healthcare access and more.