All datasets

US state housing-momentum signals (FHFA HPI boom/bust gauges)

Quarterly housing-momentum signals derived from FHFA All-Transactions House Price Indexes (FRED, 50 states + DC + US national, 1975 ->): quarter-on-quarter and year-on-year price changes, 30-quarter change volatility, 3-sigma anomaly flags vs a trailing-12-quarter baseline, drift forecasts, per-quarter cross-state volatility ranks, state-vs-nation divergence gaps, 10-year house-price z-scores, cycle-position percentiles, and boom/cooldown flags. The state-breadth companion to the national housing signals. Country codes normalized to ISO alpha-3 (USA). Raw data: Federal Housing Finance Agency via FRED.

Source: State Housing-Momentum Signals (derived)10,712 rowsUpdated: 9/22/2026
housinghouse-pricesfhfahpius-statesreal-estatebubble-riskmomentumvolatilityanomaly-detectionforecastingsignals

Quality

99.6

Attribution

Federal Reserve Bank of St. Louis (FRED; underlying data: Federal Housing Finance Agency)

Schema

ColumnTypeDescription
datestringObservation date (quarter start). FRED publishes the FHFA all-transactions indexes quarterly. (unit: ISO date)
countrystringCountry of the index (United States for all series).
country_codestringISO 3166-1 alpha-3 country code (USA).
series_idstringFRED series identifier, e.g. TXSTHPI for the Texas all-transactions index, USSTHPI for the national index.
series_labelstringFRED series title, e.g. 'All-Transactions House Price Index for California'.
valuefloatFHFA All-Transactions House Price Index (not seasonally adjusted). (unit: index)
volatility_30dfloat
momentum_3mfloat
yoy_change_pctfloat
anomaly_flaginteger
forecast_1mfloat
rankinteger
us_gapfloat
hpi_z_10yfloat
cycle_positionfloat
boom_flaginteger
cooldown_flaginteger

Sample rows

datecountrycountry_codeseries_idseries_labelvaluevolatility_30dmomentum_3myoy_change_pctanomaly_flagforecast_1mrankus_gaphpi_z_10ycycle_positionboom_flagcooldown_flag
1975-01-01United StatesUSAAKSTHPIAll-Transactions House Price Index for Alaska69.15000
1975-01-01United StatesUSAALSTHPIAll-Transactions House Price Index for Alabama72.91000
1975-01-01United StatesUSAARSTHPIAll-Transactions House Price Index for Arkansas67.31000
1975-01-01United StatesUSAAZSTHPIAll-Transactions House Price Index for Arizona59.47000
1975-01-01United StatesUSACASTHPIAll-Transactions House Price Index for California41.65000

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

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/state_housing_signals/state_housing_momentum_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_housing_signals/state_housing_momentum_signals

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