All datasets

US state GDP signals (BEA all-industry output by state)

Annual US state GDP signals from FRED/BEA (1997 -> latest): all-industry total GDP for the 50 states + DC with 1-year and 10-year growth rates, 10-year growth volatility, 3-sigma anomaly flags, drift forecasts, 10-year growth z-scores and gauges: each state's share of US GDP, a contraction flag and an outperform-vs-US flag. The output lens on regional growth — the GDP companion to the coincident index in fred-state-cycle-signals and the labor lens in state-labor-signals. Raw series: Bureau of Economic Analysis via FRED.

Source: State GDP Signals (derived)1,558 rowsUpdated: 9/22/2026
gdpstatesregionalbeagrowthoutputmomentumvolatilityanomaly-detectionforecastingsignalsfredmacroeconomics

Quality

97.4

Attribution

Bureau of Economic Analysis via FRED (derived signals by Frontier Data Hub)

Schema

ColumnTypeDescription
datestringReference year (annual; BEA state GDP).
countrystringUnited States (all series are US states).
country_codestringISO 3166-1 alpha-3 code: USA.
series_idstringFRED series ID: <ST>NGSP (all-industry total GDP for a US state, BEA) or GDP_ANNUAL_US (national GDP annualized from quarterly FRED GDP).
series_labelstringOfficial series title as published in the FRED/BEA metadata.
valuefloatAll-industry total gross domestic product, in millions of dollars, as published by the Bureau of Economic Analysis via FRED. (unit: millions of dollars)
gdp_growth_yoy_pctfloat
change_10y_pctfloat
volatility_30dfloat
anomaly_flaginteger
forecast_1mfloat
rankinteger
growth_z_10yfloat
us_share_pctfloat
contraction_flaginteger
outperform_flaginteger

Sample rows

datecountrycountry_codeseries_idseries_labelvaluegdp_growth_yoy_pctchange_10y_pctvolatility_30danomaly_flagforecast_1mrankgrowth_z_10yus_share_pctcontraction_flagoutperform_flag
1997-01-01United StatesUSAAKNGSPGross Domestic Product: All Industry Total in Alaska25859.1075.3685273275797600
1998-01-01United StatesUSAAKNGSPGross Domestic Product: All Industry Total in Alaska24387.8-5.6896798419125205267.2743383010585510
1999-01-01United StatesUSAAKNGSPGross Domestic Product: All Industry Total in Alaska24920.42.183878824658247505064.68683314675600
2000-01-01United StatesUSAAKNGSPGross Domestic Product: All Industry Total in Alaska269348.08012712476524601165.6865820852541301
2001-01-01United StatesUSAAKNGSPGross Domestic Product: All Industry Total in Alaska28660.96.4115987228039020567.7118982748797601

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

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/state_gdp_signals/us_state_gdp_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_gdp_signals/us_state_gdp_signals

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