All datasets

Global ILO unemployment signals (labor-market breadth)

Global unemployment signals from the ILO modeled estimates via World Bank WDI (~200 economies, annual 1991 ->): 10-year change, OLS trend slope, 3-sigma shock flags, 5-year linear-extrapolation forecasts, cross-country ranks, the female-minus-male gender gap, crisis/recovery flags and a 10-year z-score. The breadth companion to the OECD 20-country monthly set: every country's unemployment story on one harmonized grid. World Bank WDI (non-commercial terms).

Source: Global ILO Unemployment Signals (derived)20,643 rowsUpdated: 9/22/2026
unemploymentlabor-marketiloworld-bankwdigender-gapmacroeconomicsanomaly-detectionforecastingsignals

Quality

95.8

Attribution

World Bank, World Development Indicators (ILO modeled estimates); derived signals by Frontier Data Hub

Schema

ColumnTypeDescription
datestringReference year (January 1 of the year; WDI annual).
countrystringCountry name (ISO economies only; World Bank regional/income aggregates excluded).
country_codestringISO 3166-1 alpha-3 country code.
series_idstringWDI indicator code: SL.UEM.TOTL.ZS (total), SL.UEM.TOTL.MA.ZS (male), SL.UEM.TOTL.FE.ZS (female).
series_labelstringOfficial WDI indicator name as published in the indicator metadata.
valuefloatUnemployment rate in percent: the share of the labor force without work but available for and seeking employment (modeled ILO estimate; harmonized across countries); World Bank WDI.
change_10y_ppfloat
yoy_change_ppfloat
trend_slope_10yfloat
unemp_z_10yfloat
anomaly_flaginteger
forecast_5yfloat
rankinteger
gender_gap_ppfloat
crisis_flaginteger
recovery_flaginteger
high_unemployment_flaginteger

Sample rows

datecountrycountry_codeseries_idseries_labelvaluechange_10y_ppyoy_change_pptrend_slope_10yunemp_z_10yanomaly_flagforecast_5yrankgender_gap_ppcrisis_flagrecovery_flaghigh_unemployment_flag
1991-01-01AfghanistanAFGSL.UEM.TOTL.FE.ZSUnemployment, female (% of female labor force) (modeled ILO estimate)10.47033.686848484848481613.0100000000000007000
1992-01-01AfghanistanAFGSL.UEM.TOTL.FE.ZSUnemployment, female (% of female labor force) (modeled ILO estimate)10.456-0.014000000000001123033.686848484848481683.007999999999999000
1993-01-01AfghanistanAFGSL.UEM.TOTL.FE.ZSUnemployment, female (% of female labor force) (modeled ILO estimate)10.403-0.05299999999999905033.686848484848481873.0010000000000003000
1994-01-01AfghanistanAFGSL.UEM.TOTL.FE.ZSUnemployment, female (% of female labor force) (modeled ILO estimate)10.38-0.022999999999999687033.686848484848481822.998000000000001000
1995-01-01AfghanistanAFGSL.UEM.TOTL.FE.ZSUnemployment, female (% of female labor force) (modeled ILO estimate)10.369-0.011000000000001009-0.02780000000000032033.686848484848481772.9979999999999993000

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

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/ilo_unemployment_signals/global_ilo_unemployment_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/ilo_unemployment_signals/global_ilo_unemployment_signals

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