All datasets

US JOLTS labor market signals (openings, quits, layoffs churn gauge, anomalies)

Monthly labor-market signals derived from FRED's Job Openings and Labor Turnover Survey (JOLTS): 30-month annualized change volatility, 3-month momentum, 3-sigma anomaly flags vs a trailing 12-month baseline, naive-drift 1-month forecasts, a per-month cross-series volatility rank, and the quits-minus-layoffs churn spread (the tight-vs-loose labor market gauge). Covers job openings level and rate, quits rate, layoffs & discharges rate and hires rate. All rows are normalized to country_code USA so they join cleanly with US macro data. Raw series: Federal Reserve Bank of St. Louis (FRED); underlying survey: U.S. Bureau of Labor Statistics.

Source: JOLTS Labor Market Signals (derived)1,540 rowsUpdated: 9/22/2026
laborjoltsjob-openingsquitslayoffshiresvolatilitymomentumanomaly-detectionforecastingsignalsfred

Quality

99.4

Attribution

Federal Reserve Bank of St. Louis (FRED; underlying survey: U.S. Bureau of Labor Statistics; derived signals by Frontier Data Hub)

Schema

ColumnTypeDescription
datestringObservation date (FRED API field date; YYYY-MM-DD, first day of the reference month).
countrystring
country_codestring
series_idstringFRED series ID, e.g. JTSJOL, JTSJOR, JTSQUR, JTSLDR, JTSHIR; resolves to the series page at https://fred.stlouisfed.org/series/<id>.
series_labelstringOfficial FRED series title as published for the series (Job Openings and Labor Turnover Survey, U.S. Bureau of Labor Statistics).
valuefloatObservation value as published by FRED for this series: job openings level in thousands of persons (JTSJOL); job openings, quits, layoffs & discharges and hires rates in percent (JTSJOR, JTSQUR, JTSLDR, JTSHIR); see the series notes for methodology and revisions.
volatility_30dfloat
momentum_3mfloat
anomaly_flaginteger
forecast_1mfloat
rankinteger
churn_spreadfloat

Sample rows

datecountrycountry_codeseries_idseries_labelvaluevolatility_30dmomentum_3manomaly_flagforecast_1mrankchurn_spread
2000-12-01United StatesUSAJTSHIRHires: Total Nonfarm4.100.7000000000000002
2000-12-01United StatesUSAJTSJOLJob Openings: Total Nonfarm508800.7000000000000002
2000-12-01United StatesUSAJTSJORJob Openings: Total Nonfarm3.700.7000000000000002
2000-12-01United StatesUSAJTSLDRLayoffs and Discharges: Total Nonfarm1.500.7000000000000002
2000-12-01United StatesUSAJTSQURQuits: Total Nonfarm2.200.7000000000000002

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

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/jolts_signals/us_jolts_labor_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/jolts_signals/us_jolts_labor_signals

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