All datasets

US household wealth signals (net worth, nominal + real)

Quarterly US household wealth signals from the Fed Z.1 accounts (via FRED, 1951 ->): households and nonprofit organizations net worth in nominal and real (GDP-deflated) terms, with quarter-on-quarter and year-on-year changes, 30-quarter change volatility, 3-sigma wealth-shock flags, drift forecasts, 10-year wealth z-scores, real wealth-growth gauges and a wealth-drawdown flag. The wealth-effect lens on consumption: the stock companion to the saving/debt-flow signals in us-household-balance-signals. All rows normalized to country_code USA. Raw series: Federal Reserve (Z.1) and BEA via FRED.

Source: Household Wealth Signals (derived)608 rowsUpdated: 9/22/2026
wealthnet-worthhouseholdswealth-effectconsumptionz1financial-accountsmacroeconomicsmomentumvolatilityanomaly-detectionforecastingsignalsfred

Quality

97.3

Attribution

Federal Reserve (Z.1 Financial Accounts) and Bureau of Economic Analysis via FRED; derived signals by Frontier Data Hub

Schema

ColumnTypeDescription
datestringReference quarter (FRED observation date; quarterly).
countrystringUnited States (all series are US national).
country_codestringISO 3166-1 alpha-3 code: USA.
series_idstringFRED series ID: TNWBSHNO (Households and Nonprofit Organizations; Net Worth, Level). The real series is this connector's GDP-deflated derivative and is therefore not separately documented here.
series_labelstringOfficial FRED series title as published in the series metadata (real series: title plus ' (real, GDP-deflated)').
valuefloatHouseholds and nonprofit organizations net worth, level, in millions of U.S. dollars (nominal series) — Federal Reserve Z.1 Financial Accounts via FRED.
volatility_30dfloat
momentum_3mfloat
qoq_change_pctfloat
yoy_change_pctfloat
wealth_z_10yfloat
real_wealth_growth_yoy_pctfloat
wealth_drawdown_flagfloat
anomaly_flaginteger
forecast_1mfloat
rankinteger

Sample rows

datecountrycountry_codeseries_idseries_labelvaluevolatility_30dmomentum_3mqoq_change_pctyoy_change_pctwealth_z_10yreal_wealth_growth_yoy_pctwealth_drawdown_flaganomaly_flagforecast_1mrank
1945-10-01United StatesUSATNWBSHNOHouseholds and Nonprofit Organizations; Net Worth, Level8067200
1946-10-01United StatesUSATNWBSHNOHouseholds and Nonprofit Organizations; Net Worth, Level885325786059.7437772709242370
1947-10-01United StatesUSATNWBSHNOHouseholds and Nonprofit Organizations; Net Worth, Level9842919896611.1784937734730190
1948-10-01United StatesUSATNWBSHNOHouseholds and Nonprofit Organizations; Net Worth, Level1037089527985.36406408267473540
1949-10-01United StatesUSATNWBSHNOHouseholds and Nonprofit Organizations; Net Worth, Level1079498424094.08923438586272833.813218960729860

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

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/wealth_signals/us_household_wealth_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/wealth_signals/us_household_wealth_signals

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