Federal Debt to GDP was last reported at 122.59 % of GDP as of January 1, 2026. That is up 0.02% from the prior reading of 122.57 % of GDP. This indicator is reported Quarterly and seasonally adjusted, and is tracked under the Fiscal category. The next scheduled release is September 30, 2026.
| Date | Value (% of GDP) |
|---|---|
| 2026 Q1 | 122.59 |
| 2025 Q4 | 122.57 |
| 2025 Q3 | 121.03 |
| 2025 Q2 | 118.78 |
| 2025 Q1 | 120.55 |
| 2024 Q4 | 121.44 |
| 2024 Q3 | 120.17 |
| 2024 Q2 | 119.50 |
| 2024 Q1 | 120.48 |
| 2023 Q4 | 119.62 |
| Date | Value (% of GDP) |
|---|---|
| 2023 Q3 | 118.14 |
| 2023 Q2 | 117.44 |
| 2023 Q1 | 115.59 |
| 2022 Q4 | 117.37 |
| 2022 Q3 | 117.44 |
| 2022 Q2 | 118.20 |
| 2022 Q1 | 120.40 |
| 2021 Q4 | 119.36 |
| 2021 Q3 | 118.54 |
| 2021 Q2 | 121.79 |
Pull the full history of Federal Debt to GDP into your own models, spreadsheets and apps with the
free Business Quant Economic Data API. Swap YOUR_API_KEY for your own key.
https://data.businessquant.com/economic?code=USDEBTGDP&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USDEBTGDP", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USDEBTGDP&period=max&api_key=YOUR_API_KEY");
const data = await res.json();