All datasets

US state wage-growth signals (regional pay pressure)

US state-level average hourly earnings signals (BLS via FRED, 50 states + DC, monthly 2007 ->): 12-month wage growth, 3-month momentum, 30-period change volatility, 3-sigma shock flags, drift forecasts, 5-year pay-pressure z-scores, the state-vs-US growth gap and cross-state growth ranks. The regional pay-pressure lens: where wages run hot or cold across the country. BLS data via FRED (free, keyless-by-reuse of the existing FRED key).

Source: US State Wage-Growth Signals (derived)12,036 rowsUpdated: 9/22/2026
wagesearningslabor-marketstatesregionalpay-pressureblsmacroeconomicsanomaly-detectionforecastingsignalsfred

Quality

98.9

Attribution

U.S. Bureau of Labor Statistics via FRED; derived signals by Frontier Data Hub

Schema

ColumnTypeDescription
datestringReference month (FRED observation date; monthly, seasonally adjusted).
countrystringUnited States (all series are US state-level).
country_codestringISO 3166-1 alpha-3 code: USA.
series_idstringFRED series ID: SMU<state-FIPS>000000500000003 (average hourly earnings of all employees, total private, by state).
series_labelstringOfficial FRED series title as published in the series metadata (includes the state name).
valuefloatAverage hourly earnings of all employees on private nonfarm payrolls, in dollars, seasonally adjusted; U.S. Bureau of Labor Statistics, Current Employment Statistics program, via FRED.
yoy_change_pctfloat
momentum_3mfloat
volatility_30dfloat
anomaly_flaginteger
forecast_1mfloat
wage_z_5yfloat
rankinteger
us_gap_ppfloat
strong_growth_flaginteger
weak_growth_flaginteger

Sample rows

datecountrycountry_codeseries_idseries_labelvalueyoy_change_pctmomentum_3mvolatility_30danomaly_flagforecast_1mwage_z_5yrankus_gap_ppstrong_growth_flagweak_growth_flag
2007-01-01United StatesUSASMU01000000500000003Average Hourly Earnings of All Employees: Total Private in Alabama19.24000
2007-02-01United StatesUSASMU01000000500000003Average Hourly Earnings of All Employees: Total Private in Alabama19.29000
2007-03-01United StatesUSASMU01000000500000003Average Hourly Earnings of All Employees: Total Private in Alabama19.4000
2007-04-01United StatesUSASMU01000000500000003Average Hourly Earnings of All Employees: Total Private in Alabama19.531.5072765072765115000
2007-05-01United StatesUSASMU01000000500000003Average Hourly Earnings of All Employees: Total Private in Alabama19.420.6739243131156147000

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

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/state_wage_signals/us_state_wage_growth_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/state_wage_signals/us_state_wage_growth_signals

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