All datasets

US retail-sales signals

Monthly US retail-sales signals from Census advance retail data (FRED RSXFS nominal retail trade + RRSFS real retail & food services, 1992-01 ->, seasonally adjusted, keyless except the already-provisioned FRED key): year-on-year change, 3-month momentum, 12-month change volatility, 3-sigma anomaly flags, naive-drift forecasts, 5-year spending z-scores, and contraction/strong-expansion flags. The measured monthly household-spending lens between us-consumer-sentiment-signals (stated sentiment) and quarterly real PCE — the nominal/real split shows when spending growth is prices vs volume. All rows normalized to country_code USA. Raw data: Census Bureau via FRED.

Source: US Retail Sales Signals (derived)831 rowsUpdated: 9/22/2026License: CC0-1.0
retailconsumer-spendingcensusfredconsumptionnominal-vs-realmomentumanomaly-detectionforecastingsignals

Quality

99.5

Attribution

US Census Bureau, Monthly Retail Trade Survey via FRED; derived signals by Frontier Data Hub

Schema

ColumnTypeDescription
datestringMonth of observation (Census Monthly Retail Trade Survey, monthly, seasonally adjusted).
countrystring
country_codestring
series_idstringRSXFS (advance retail sales, retail trade, nominal) or RRSFS (advance real retail and food services sales), FRED series IDs.
series_labelstringSeries description: advance retail sales, retail trade (nominal, millions of dollars, SA) or advance real retail and food services sales (millions of 1982-84 CPI-adjusted dollars, SA).
valuefloatAdvance estimate of monthly retail sales in the series' native unit: nominal millions of dollars for RSXFS; millions of 1982-84 CPI-adjusted dollars for RRSFS.
yoy_changefloat
momentum_3mfloat
volatility_30dfloat
anomaly_flaginteger
forecast_1mfloat
spend_z_5yfloat
contraction_flaginteger
strong_flaginteger

Sample rows

datecountrycountry_codeseries_idseries_labelvalueyoy_changemomentum_3mvolatility_30danomaly_flagforecast_1mspend_z_5ycontraction_flagstrong_flag
1992-01-01United StatesUSARRSFSAdvance real retail and food services sales (millions of 1982-84 CPI-adjusted $, SA)115095000
1992-02-01United StatesUSARRSFSAdvance real retail and food services sales (millions of 1982-84 CPI-adjusted $, SA)114855000
1992-03-01United StatesUSARRSFSAdvance real retail and food services sales (millions of 1982-84 CPI-adjusted $, SA)114052000
1992-04-01United StatesUSARRSFSAdvance real retail and food services sales (millions of 1982-84 CPI-adjusted $, SA)114721-0.32494895521091305000
1992-05-01United StatesUSARRSFSAdvance real retail and food services sales (millions of 1982-84 CPI-adjusted $, SA)1148680.011318619128464213000

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

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/retail_sales_signals/us_retail_sales_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/retail_sales_signals/us_retail_sales_signals

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