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.
Qualité
Attribution
U.S. Department of the Treasury, Bureau of the Fiscal Service; derived signals by Frontier Data Hub
Schéma
| Colonne | Type | Description |
|---|---|---|
| date | string | Reference day (debt to the penny) or month (Monthly Treasury Statement; average interest rates). |
| country | string | United States (all series are US federal). |
| country_code | string | ISO 3166-1 alpha-3 code: USA. |
| series_id | string | Series 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_label | string | Provider wording from the Treasury dataset as normalized by the raw treasury connector. |
| value | float | Published 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_change | float | |
| momentum_3m | float | |
| volatility_30d | float | |
| anomaly_flag | integer | |
| forecast_1m | float | |
| debt_held_public_share | float | |
| deficit_12m | float | |
| deficit_growth_yoy | float | |
| avg_rate_change_1y_pp | float |
Exemple de lignes
| date | country | country_code | series_id | series_label | value | yoy_change | momentum_3m | volatility_30d | anomaly_flag | forecast_1m | debt_held_public_share | deficit_12m | deficit_growth_yoy | avg_rate_change_1y_pp |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1997-09-30 | United States | USA | debt_held_public | Debt Held by the Public | 3789667546849.6 | — | — | — | 0 | — | 0.7000859645888883 | — | — | — |
| 1998-09-30 | United States | USA | debt_held_public | Debt Held by the Public | 3733864472163.53 | — | — | — | 0 | — | 0.6756666779737343 | — | — | — |
| 1999-09-30 | United States | USA | debt_held_public | Debt Held by the Public | 3636104594501.81 | — | — | — | 0 | — | 0.6428448456122864 | — | — | — |
| 2000-09-29 | United States | USA | debt_held_public | Debt Held by the Public | 3405303490221.2 | — | — | — | 0 | — | 0.600140384080235 | — | — | — |
| 2001-09-28 | United States | USA | debt_held_public | Debt Held by the Public | 3339310176094.74 | — | — | — | 0 | — | 0.5750032224188734 | — | — | — |
Télécharger un échantillon
Téléchargez l'échantillon complet de ce jeu de données (lignes d'exemple, pas le jeu complet).
Utiliser avec un LLM
Dirigez n’importe quel LLM vers le point d’accès des métadonnées — la documentation ci-dessus est aussi lisible par machine (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)Point d’accès API: https://datazimuts.com/v1/datasets/treasury_fiscal_signals/us_treasury_fiscal_pulse_signals
Astuce : récupérez /llms.txt pour le catalogue complet lisible par machine.