All datasets

Global living-standards signals (GDP per capita PPP, ranks, catch-up)

Yearly global living-standards signals from IMF DataMapper GDP per capita at purchasing power parity (PPPPC, ~190 economies, 1980 ->, WEO projections as published): 5- and 10-year changes, 10-year OLS trend slopes, 3-sigma anomaly flags, linear 5-year forecasts, 10-year income z-scores, per-year global income ranks, high/low-income flags and a catch-up (convergence) flag. The living-standards lens on the world economy — income levels, not growth rates. Companion to imf-global-real-gdp-growth-signals (rates) and global-debt-signals (fiscal stock). All rows carry canonical country_code labels. Raw indicator: International Monetary Fund, DataMapper.

Source: Global Living-Standards Signals (derived)9,268 rowsUpdated: 9/22/2026
living-standardsincomegdp-per-capitapppinequalityconvergencecatch-upprosperityanomaly-detectionforecastingsignalsimf

Quality

91.2

Attribution

International Monetary Fund, DataMapper (derived signals by Frontier Data Hub)

Schema

ColumnTypeDescription
datestringReference year (IMF DataMapper annual; includes WEO projections as published).
countrystring
country_codestring
series_idstringIMF DataMapper indicator code: PPPPC (GDP per capita, constant prices, purchasing power parity).
series_labelstringIndicator title as published in the IMF DataMapper.
valuefloatGDP per capita, constant prices, purchasing power parity, in international dollars (IMF DataMapper PPPPC).
change_5yfloat
change_10y_pctfloat
trend_slope_10yfloat
anomaly_flaginteger
forecast_5yfloat
income_z_10yfloat
rankinteger
high_income_flaginteger
low_income_flaginteger
catchup_flaginteger

Sample rows

datecountrycountry_codeseries_idseries_labelvaluechange_5ychange_10y_pcttrend_slope_10yanomaly_flagforecast_5yincome_z_10yrankhigh_income_flaglow_income_flagcatchup_flag
1986-01-01ArubaABWPPPPCGDP per capita, constant prices, purchasing power parity (international dollars)8114.188045000
1987-01-01ArubaABWPPPPCGDP per capita, constant prices, purchasing power parity (international dollars)9229.281040000
1988-01-01ArubaABWPPPPCGDP per capita, constant prices, purchasing power parity (international dollars)10969.003036000
1989-01-01ArubaABWPPPPCGDP per capita, constant prices, purchasing power parity (international dollars)12568.694035000
1990-01-01ArubaABWPPPPCGDP per capita, constant prices, purchasing power parity (international dollars)13414.1131393.9262999999994020383.74449999999736000

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

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/living_standards_signals/global_living_standards_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/living_standards_signals/global_living_standards_signals

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