All datasets

Global poverty & inequality signals (Gini and poverty headcount trajectories, anomaly flags)

Country-level signals derived from World Bank poverty and inequality indicators (Gini index, poverty headcount at $3.00 and $4.20 a day, 2021 PPP): 10-year point changes, OLS trend slopes over trailing survey years, 3-sigma anomaly flags, 5-year linear-extrapolation forecasts, per-year cross-country ranks, a poverty-improvement flag and a high-inequality flag. All rows are normalized to ISO alpha-3 country_code so they join cleanly with country macro data. Raw data: World Bank Poverty and Inequality Platform (keyless API, non-commercial terms).

Source: Poverty & Inequality Signals (derived)7,977 rowsUpdated: 9/22/2026
povertyinequalityginidevelopmentworld-banktrendanomaly-detectionforecastingsignals

Quality

92

Attribution

World Bank Poverty and Inequality Platform (derived signals by Frontier Data Hub)

Schema

ColumnTypeDescription
datestringSurvey year, reported as January 1 of the year (World Bank API field date).
countrystring
country_codestring
series_idstringWorld Bank indicator code: SI.POV.GINI (Gini index), SI.POV.DDAY (poverty headcount ratio at $3.00 a day, 2021 PPP), SI.POV.LMIC (poverty headcount ratio at $4.20 a day, 2021 PPP).
series_labelstringOfficial World Bank indicator name as published in the indicator metadata.
valuefloatIndicator value for the survey year: Gini index (0 = perfect equality, 100 = perfect inequality) or poverty headcount ratio as a percentage of the population. See the World Bank indicator metadata for full methodology.
change_10y_ppfloat
trend_slopefloat
anomaly_flaginteger
forecast_1mfloat
rankinteger
improvement_flaginteger
high_inequality_flaginteger

Sample rows

datecountrycountry_codeseries_idseries_labelvaluechange_10y_pptrend_slopeanomaly_flagforecast_1mrankimprovement_flaghigh_inequality_flag
1963-01-01United StatesUSASI.POV.DDAYPoverty headcount ratio at $3.00 a day (2021 PPP) (% of population)1.601
1963-01-01United StatesUSASI.POV.GINIGini index36.7010
1963-01-01United StatesUSASI.POV.LMICPoverty headcount ratio at $4.20 a day (2021 PPP) (% of population)2.101
1964-01-01United StatesUSASI.POV.DDAYPoverty headcount ratio at $3.00 a day (2021 PPP) (% of population)1.501
1964-01-01United StatesUSASI.POV.GINIGini index37.4010

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

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/poverty_inequality_signals/global_poverty_inequality_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/poverty_inequality_signals/global_poverty_inequality_signals

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