All datasets

US Treasury fiscal-pulse signals (high-frequency fiscal flows)

High-frequency US federal fiscal signals from the Treasury Bureau of the Fiscal Service: daily debt velocity (debt-to-the-penny since 1993), the trailing-12-month deficit from Monthly Treasury Statements (nets out the fiscal-year sawtooth), the debt-held-by-public share, and the average interest rate on all interest-bearing debt with its 1-year repricing change. 30-period change volatility, 3-sigma shock flags, drift forecasts and a 12-period baseline. The daily/monthly companion to the quarterly FRED fiscal set. Public-domain US federal data.

Source: US Treasury Fiscal-Pulse Signals (derived)20,012 rowsUpdated: 9/22/2026
fiscal-policyfederal-debtdeficittreasuryinterest-ratesgovernment-financemacroeconomicsanomaly-detectionforecastingsignals

Quality

97

Attribution

U.S. Department of the Treasury, Bureau of the Fiscal Service; derived signals by Frontier Data Hub

Schema

ColumnTypeDescription
datestringReference day (debt to the penny) or month (Monthly Treasury Statement; average interest rates).
countrystringUnited States (all series are US federal).
country_codestringISO 3166-1 alpha-3 code: USA.
series_idstringSeries identifier from the Treasury source datasets: total public debt outstanding / debt held by the public / intragovernmental holdings (daily); monthly deficit-surplus, gross outlays, gross receipts; average interest rate on all interest-bearing debt.
series_labelstringProvider wording from the Treasury dataset as normalized by the raw treasury connector.
valuefloatPublished level: USD for debt and fiscal-flow series, percent for the average interest rate; U.S. Department of the Treasury, Bureau of the Fiscal Service.
yoy_changefloat
momentum_3mfloat
volatility_30dfloat
anomaly_flaginteger
forecast_1mfloat
debt_held_public_sharefloat
deficit_12mfloat
deficit_growth_yoyfloat
avg_rate_change_1y_ppfloat

Sample rows

datecountrycountry_codeseries_idseries_labelvalueyoy_changemomentum_3mvolatility_30danomaly_flagforecast_1mdebt_held_public_sharedeficit_12mdeficit_growth_yoyavg_rate_change_1y_pp
1997-09-30United StatesUSAdebt_held_publicDebt Held by the Public3789667546849.600.7000859645888883
1998-09-30United StatesUSAdebt_held_publicDebt Held by the Public3733864472163.5300.6756666779737343
1999-09-30United StatesUSAdebt_held_publicDebt Held by the Public3636104594501.8100.6428448456122864
2000-09-29United StatesUSAdebt_held_publicDebt Held by the Public3405303490221.200.600140384080235
2001-09-28United StatesUSAdebt_held_publicDebt Held by the Public3339310176094.7400.5750032224188734

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

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/treasury_fiscal_signals/us_treasury_fiscal_pulse_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/treasury_fiscal_signals/us_treasury_fiscal_pulse_signals

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