All datasets

US recession-probability signals (NY Fed smoothed probabilities)

Monthly US recession-probability signals from the New York Fed's Smoothed U.S. Recession Probabilities (Chauvet-Piger dynamic-factor Markov-switching model, redistributed by FRED, 1967 ->): the forward-looking probability that the economy is in recession, with 3-month momentum, 30-month change volatility, 3-sigma anomaly flags, drift forecasts, a 5-year probability z-score, elevated (>=30) and recession-call (>=50) flags, a surging-risk flag, and a high-probability streak counter. The forward-looking companion to the NBER-based realized recession flag in us-output-business-cycle-signals. All rows normalized to country_code USA. Raw series: Federal Reserve Bank of New York via FRED.

Source: Recession-Probability Signals (derived)710 rowsUpdated: 9/22/2026
recessionbusiness-cyclerecession-probabilitynew-york-fedchauvet-pigermacroeconomicsriskmomentumanomaly-detectionforecastingsignalsfred

Quality

99.7

Attribution

Federal Reserve Bank of New York (Smoothed U.S. Recession Probabilities) via FRED; derived signals by Frontier Data Hub

Schema

ColumnTypeDescription
datestringObservation date (FRED API field date; YYYY-MM-DD, monthly).
countrystring
country_codestring
series_idstringFRED series ID: RECPROUSM156N (Smoothed U.S. Recession Probabilities, Federal Reserve Bank of New York).
series_labelstringOfficial FRED series title as published for the series.
valuefloatSmoothed probability that the U.S. economy was in a recession during the month, in percent, estimated from a dynamic-factor Markov-switching model of coincident indicators (Federal Reserve Bank of New York, via FRED).
momentum_3mfloat
volatility_30dfloat
anomaly_flaginteger
forecast_1mfloat
prob_z_5yfloat
elevated_flaginteger
recession_call_flaginteger
rising_flaginteger
high_prob_streakinteger

Sample rows

datecountrycountry_codeseries_idseries_labelvaluemomentum_3mvolatility_30danomaly_flagforecast_1mprob_z_5yelevated_flagrecession_call_flagrising_flaghigh_prob_streak
1967-06-01United StatesUSARECPROUSM156NSmoothed U.S. Recession Probabilities1.100000
1967-07-01United StatesUSARECPROUSM156NSmoothed U.S. Recession Probabilities0.5400000
1967-08-01United StatesUSARECPROUSM156NSmoothed U.S. Recession Probabilities0.1200000
1967-09-01United StatesUSARECPROUSM156NSmoothed U.S. Recession Probabilities0.52-0.580000000000000100000
1967-10-01United StatesUSARECPROUSM156NSmoothed U.S. Recession Probabilities0.18-0.3600000000000000400000

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

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/recession_prob_signals/us_recession_probability_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/recession_prob_signals/us_recession_probability_signals

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