All datasets

Maternal mortality ratio

Maternal mortality ratio SDG indicator SH_STA_MORT (SDG goal 3). Source: UN SDG Global Database. Rows are geo-area x year x disaggregation dimensions (sex, age, location/urban-rural where published). Full source citation (UN SDG API): MMEIG estimates available at https://www.who.int/publications/i/item/9789240108462.

Source: UN SDG Global Database5,640 rowsUpdated: 9/21/2026
maternal-mortalitymaternal-healthsdg3who

Quality

97

Attribution

United Nations Statistics Division, SDG Global Database

Schema

ColumnTypeDescription
datetimestampStart date of the observation year (UN SDG API field timePeriodStart).
yearintegerYear of observation (UN SDG API field timePeriodStart).
series_idstringStable row key: geo-area code plus the SDG dimension codes for this observation.
series_labelstringHuman-readable label: geo-area name plus the UN SDG API dimension code descriptions for this observation.
geo_area_codestringUN SDG API field geoAreaCode (UN M49 area code; aggregates such as regions and income groups use codes like 2 for Africa).
geo_area_namestringGeo-area name (UN SDG API field geoAreaName).
sexstringDisaggregation dimension from the UN SDG API (dimension 'Sex'). Provider code values include: FEMALE: Female; BOTHSEX: Both sexes.
reporting_typestringDisaggregation dimension from the UN SDG API (dimension 'Reporting Type'). Provider code values include: N: National; G: Global.
unitstringMeasurement unit description from the UN SDG API 'Units' attribute metadata for this series.
data_naturestringNature of the data point from the UN SDG API 'Nature' attribute metadata (e.g. Country data, Estimated data, Modelled data, Global monitoring data).
sourcestringSource credit from the UN SDG API record (UN SDG API field source). Runs of 10+ digits are stripped from this per-row credit because they falsely trip the platform's phone-number PII heuristic; the full verbatim citation is preserved in the dataset description.
valuefloatEstimate value for the geo-area, year and disaggregation dimensions, as published in the UN SDG Global Database (UN SDG API field value). Definition and unit are those of the SDG series — see the dataset description.
lowfloatLower bound of the published uncertainty interval (UN SDG API field lowerBound). Only present when the series publishes it.
highfloatUpper bound of the published uncertainty interval (UN SDG API field upperBound). Only present when the series publishes it.

Sample rows

dateyearseries_idseries_labelgeo_area_codegeo_area_namesexreporting_typeunitdata_naturesourcevaluelowhigh
2000-01-01T00:00:0020001.FEMALE.GWorld — Female — Global1WorldFEMALEGPer 100,000 live birthsNon-relevantMMEIG estimates available at https://www.who.int/publications/i/item327.62899308.78183348.62009
2001-01-01T00:00:0020011.FEMALE.GWorld — Female — Global1WorldFEMALEGPer 100,000 live birthsNon-relevantMMEIG estimates available at https://www.who.int/publications/i/item321.17522303.03583341.54419
2002-01-01T00:00:0020021.FEMALE.GWorld — Female — Global1WorldFEMALEGPer 100,000 live birthsNon-relevantMMEIG estimates available at https://www.who.int/publications/i/item311.38922293.99563330.99688
2003-01-01T00:00:0020031.FEMALE.GWorld — Female — Global1WorldFEMALEGPer 100,000 live birthsNon-relevantMMEIG estimates available at https://www.who.int/publications/i/item300.77099284.33819319.32004
2004-01-01T00:00:0020041.FEMALE.GWorld — Female — Global1WorldFEMALEGPer 100,000 live birthsNon-relevantMMEIG estimates available at https://www.who.int/publications/i/item290.93301275.28348308.99006

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/unsdg/maternal_mortality_ratio" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/unsdg/maternal_mortality_ratio").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/unsdg/maternal_mortality_ratio

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