All datasets

Global longevity convergence signals (frontier gaps, catch-up velocity)

Value-added longevity signals from the free WHO Global Health Observatory: life-expectancy frontier gaps and catch-up velocity, healthy-life-expectancy trends, suicide-rate trends and malaria decline, with 3-sigma anomaly flags and cross-country ranks across ~190 countries. All computation is local pandas/numpy; no paid models or APIs.

Source: Global Longevity Convergence Signals (derived)14,890 rowsUpdated: 9/22/2026
longevitylife-expectancymortalitywhoconvergencedemographicssignals

Quality

92.6

Attribution

World Health Organization, Global Health Observatory; derived signals by Frontier Data Hub

Schema

ColumnTypeDescription
datestringReference year of the observation (first day of the year), as published in the WHO Global Health Observatory.
countrystring
country_codestring
series_idstringDerived series identifier: LE_BTSX (life expectancy at birth, both sexes), HALE_BTSX (healthy life expectancy, both sexes), SUICIDE_BTSX (age-standardized suicide rate, both sexes), or MALARIA_INC (estimated malaria incidence).
series_labelstringHuman-readable indicator label from the WHO Global Health Observatory, naming the indicator, sex scope, and unit.
valuefloatIndicator value as published by WHO: life expectancy and healthy life expectancy in years; suicide rate per 100,000 population (age-standardized); malaria incidence per 1,000 population at risk.
gap_to_frontierfloat
convergence_velocity_10yfloat
trend_10yfloat
anomaly_flaginteger
rankfloat

Sample rows

datecountrycountry_codeseries_idseries_labelvaluegap_to_frontierconvergence_velocity_10ytrend_10yanomaly_flagrank
2000-01-01AfghanistanAFGHALE_BTSXHealthy life expectancy (HALE) at birth, both sexes (years, WHO Global Health Observatory)46.0279504935.50222881026
2000-01-01AngolaAGOHALE_BTSXHealthy life expectancy (HALE) at birth, both sexes (years, WHO Global Health Observatory)42.847180738.6829986011
2000-01-01AlbaniaALBHALE_BTSXHealthy life expectancy (HALE) at birth, both sexes (years, WHO Global Health Observatory)64.4774077917.052771510138
2000-01-01United Arab EmiratesAREHALE_BTSXHealthy life expectancy (HALE) at birth, both sexes (years, WHO Global Health Observatory)67.4534562814.0767230200000030165
2000-01-01ArgentinaARGHALE_BTSXHealthy life expectancy (HALE) at birth, both sexes (years, WHO Global Health Observatory)64.7253530816.8048262199999950139

Download sample data

Download the full sample snapshot for this dataset (sample rows, not the complete dataset).

Use with an LLM

Point any LLM at the metadata endpoint — the documentation above is machine-readable too (JSON-LD + Croissant).

cURL

curl "https://datazimuts.com/v1/datasets/longevity_convergence_signals/global_longevity_convergence_signals" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/longevity_convergence_signals/global_longevity_convergence_signals").json()
print(ds["title"], ds["rows"], "rows")

# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
    print(row)

API endpoint: https://datazimuts.com/v1/datasets/longevity_convergence_signals/global_longevity_convergence_signals

Tip: fetch /llms.txt for the full machine-readable catalog.