Age-standardized suicide rates (per 100 000 population)
Age-standardized suicide rates (per 100 000 population) Source: WHO Global Health Observatory (indicator MH_12). Rows are country x year; sex-disaggregated rows carry a sex label.
Source: WHO Global Health Observatory12,210 rowsUpdated: 9/21/2026
suicidemental-healthwho
Quality
97
Attribution
World Health Organization (WHO)
Schema
| Column | 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. |
Sample rows
| country_code | country_name | year | sex | value | low | high |
|---|---|---|---|---|---|---|
| AFG | AFG | 2000 | SEX_BTSX | 7.18571671 | 3.764943693 | 12.08424313 |
| AFG | AFG | 2000 | SEX_FMLE | 4.934659256 | 2.476046951 | 9.064900755 |
| AFG | AFG | 2000 | SEX_MLE | 9.609621633 | 5.171593444 | 15.40750438 |
| AFG | AFG | 2001 | SEX_BTSX | 7.270323099 | 3.81797894 | 12.21566488 |
| AFG | AFG | 2001 | SEX_FMLE | 4.996167305 | 2.505722684 | 9.147812569 |
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/who_gho/suicide_rate_age_standardized" | jq '{title, rows, columns_count, license}'Python
import requests
ds = requests.get("https://datazimuts.com/v1/datasets/who_gho/suicide_rate_age_standardized").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/who_gho/suicide_rate_age_standardized
Tip: fetch /llms.txt for the full machine-readable catalog.