GDP Nowcast (St. Louis Fed) was last reported at 3.14 % as of July 1, 2026. That is up 50.21% from the prior reading of 2.09 %. This indicator is reported Quarterly and saar, and is tracked under the Growth category. The next scheduled release is September 25, 2026.
| Date | Value (%) |
|---|---|
| 2026 Q3 | 2.41 |
| 2026 Q2 | 2.09 |
| 2026 Q1 | 2.50 |
| 2025 Q4 | -0.17 |
| 2025 Q3 | 0.42 |
| 2025 Q2 | 1.73 |
| 2025 Q1 | 3.07 |
| 2024 Q4 | 2.38 |
| 2024 Q3 | 1.77 |
| 2024 Q2 | 1.14 |
| Date | Value (%) |
|---|---|
| 2024 Q1 | 1.71 |
| 2023 Q4 | 2.03 |
| 2023 Q3 | 2.31 |
| 2023 Q2 | 0.80 |
| 2023 Q1 | 0.56 |
| 2022 Q4 | 0.44 |
| 2022 Q3 | 1.30 |
| 2022 Q2 | 4.10 |
| 2022 Q1 | 1.96 |
| 2021 Q4 | 3.75 |
Pull the full history of GDP Nowcast (St. Louis Fed) 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=USGDPNOWSTL&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USGDPNOWSTL", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USGDPNOWSTL&period=max&api_key=YOUR_API_KEY");
const data = await res.json();