GDP Deflator was last reported at 133.86 Index 2017=100 as of April 1, 2026. That is up 1.57% from the prior reading of 131.78 Index 2017=100. This indicator is reported Quarterly and seasonally adjusted, and is tracked under the Growth category. The next scheduled release is September 30, 2026.
| Date | Value (Index 2017=100) |
|---|---|
| 2026 Q2 | 133.86 |
| 2026 Q1 | 131.78 |
| 2025 Q4 | 130.62 |
| 2025 Q3 | 129.43 |
| 2025 Q2 | 128.25 |
| 2025 Q1 | 127.58 |
| 2024 Q4 | 126.45 |
| 2024 Q3 | 125.70 |
| 2024 Q2 | 125.17 |
| 2024 Q1 | 124.37 |
| Date | Value (Index 2017=100) |
|---|---|
| 2023 Q4 | 123.41 |
| 2023 Q3 | 122.91 |
| 2023 Q2 | 121.92 |
| 2023 Q1 | 121.29 |
| 2022 Q4 | 120.16 |
| 2022 Q3 | 119.03 |
| 2022 Q2 | 117.73 |
| 2022 Q1 | 115.13 |
| 2021 Q4 | 112.85 |
| 2021 Q3 | 110.94 |
Pull the full history of GDP Deflator 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=USGDPDEF&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USGDPDEF", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USGDPDEF&period=max&api_key=YOUR_API_KEY");
const data = await res.json();