All datasets

US freight-activity signals (goods-demand slowdown/surge gauges)

Monthly goods-demand signals derived from FRED US transport data (Cass shipments, freight transportation services index, rail carloads): month-on-month and year-on-year changes, 30-month change volatility, 3-sigma anomaly flags vs a trailing-12-month baseline, drift forecasts, per-month cross-series volatility ranks, and a composite freight-momentum z-score with slowdown/surge flags. The transport-flow companion to the industrial-production and trade signals. Country codes normalized to ISO alpha-3 (USA). Raw data: Cass Information Systems / Bureau of Transportation Statistics / Association of American Railroads via FRED.

Source: US Freight-Activity Signals (derived)764 rowsUpdated: 9/22/2026
freightlogisticstransportrailtruckinggoods-demandreal-economymomentumvolatilityanomaly-detectionforecastingsignals

Quality

92.1

Attribution

Cass Information Systems / Bureau of Transportation Statistics / Association of American Railroads via FRED (derived signals by Frontier Data Hub)

Schema

ColumnTypeDescription
datestringObservation date (month start). (unit: ISO date)
countrystringCountry of the series (United States).
country_codestringISO 3166-1 alpha-3 country code (USA).
series_idstringFRED series identifier: FRGSHPUSM649NCIS, TSIFRGHT, or RAILFRTCARLOADSD11.
series_labelstringFRED series title.
valuefloatSeries value in native units: Cass shipments index (January 1990 = 1.0), freight transportation services index (2000 = 100), or rail freight carloads (number of carloads).
volatility_30dfloat
momentum_3mfloat
yoy_change_pctfloat
anomaly_flaginteger
forecast_1mfloat
rankinteger
freight_momentum_zfloat
slowdown_flaginteger
surge_flaginteger

Sample rows

datecountrycountry_codeseries_idseries_labelvaluevolatility_30dmomentum_3myoy_change_pctanomaly_flagforecast_1mrankfreight_momentum_zslowdown_flagsurge_flag
2000-01-01United StatesUSARAILFRTCARLOADSD11Rail Freight Carloads1373789000
2000-01-01United StatesUSATSIFRGHTFreight Transportation Services Index104.9000
2000-02-01United StatesUSARAILFRTCARLOADSD11Rail Freight Carloads1369630000
2000-02-01United StatesUSATSIFRGHTFreight Transportation Services Index103.1000
2000-03-01United StatesUSARAILFRTCARLOADSD11Rail Freight Carloads1363186000

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

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/freight_activity_signals/us_freight_activity_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/freight_activity_signals/us_freight_activity_signals

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