Life expectancy at birth (years)
Life expectancy at birth (years) Source: WHO Global Health Observatory (indicator WHOSIS_000001). Rows are country x year; sex-disaggregated rows carry a sex label.
Source: WHO Global Health Observatory12,210 lignesMis à jour: 21/09/2026
life-expectancymortalitywho
Qualité
97
Attribution
World Health Organization (WHO)
Schéma
| Colonne | Type | Description |
|---|---|---|
| country_code | string | Country code (WHO GHO API field SpatialDim, country-level rows only). |
| country_name | string | Country name from the WHO GHO COUNTRY dimension labels. |
| year | integer | Year of observation (WHO GHO API field TimeDim). |
| sex | string | Sex disaggregation label (WHO GHO API dimension Dim1). Only present when the indicator is published sex-disaggregated. |
| value | float | Estimate value for the country, year (and sex where present), as defined by the WHO GHO indicator (see the dataset description; WHO GHO API field NumericValue). |
| low | float | Lower bound of the published uncertainty interval (WHO GHO API field Low). Only present when the indicator publishes uncertainty intervals. |
| high | float | Upper bound of the published uncertainty interval (WHO GHO API field High). Only present when the indicator publishes uncertainty intervals. |
Exemple de lignes
| country_code | country_name | year | sex | value | low | high |
|---|---|---|---|---|---|---|
| AFG | AFG | 2000 | SEX_BTSX | 53.82332641 | 52.75192313 | 54.92601533 |
| AFG | AFG | 2000 | SEX_FMLE | 54.42957895 | 53.41471442 | 55.62508896 |
| AFG | AFG | 2000 | SEX_MLE | 53.24999078 | 52.28245137 | 54.25951111 |
| AFG | AFG | 2001 | SEX_BTSX | 53.91018761 | 52.85725031 | 54.84655332 |
| AFG | AFG | 2001 | SEX_FMLE | 54.57005863 | 53.56014964 | 55.62005472 |
Utiliser avec un LLM
Dirigez n’importe quel LLM vers le point d’accès des métadonnées — la documentation ci-dessus est aussi lisible par machine (JSON-LD + Croissant).
cURL
curl "https://datazimuts.com/v1/datasets/who_gho/life_expectancy_at_birth" | jq '{title, rows, columns_count, license}'Python
import requests
ds = requests.get("https://datazimuts.com/v1/datasets/who_gho/life_expectancy_at_birth").json()
print(ds["title"], ds["rows"], "rows")
# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
print(row)Point d’accès API: https://datazimuts.com/v1/datasets/who_gho/life_expectancy_at_birth
Astuce : récupérez /llms.txt pour le catalogue complet lisible par machine.