GDP Nowcast (Atlanta Fed) was last reported at 5.1 % as of July 1, 2026. That is up 229.84% from the prior reading of 1.5 %. 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 | 4.7 |
| 2026 Q2 | 1.5 |
| 2026 Q1 | 1.2 |
| 2025 Q4 | 4.2 |
| 2025 Q3 | 3.5 |
| 2025 Q2 | 2.9 |
| 2025 Q1 | -2.7 |
| 2024 Q4 | 2.3 |
| 2024 Q3 | 2.8 |
| 2024 Q2 | 2.6 |
| Date | Value (%) |
|---|---|
| 2024 Q1 | 2.7 |
| 2023 Q4 | 2.4 |
| 2023 Q3 | 5.4 |
| 2023 Q2 | 2.4 |
| 2023 Q1 | 1.1 |
| 2022 Q4 | 3.5 |
| 2022 Q3 | 3.1 |
| 2022 Q2 | -1.2 |
| 2022 Q1 | 0.4 |
| 2021 Q4 | 6.5 |
Pull the full history of GDP Nowcast (Atlanta 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=USGDPNOWATL&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USGDPNOWATL", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USGDPNOWATL&period=max&api_key=YOUR_API_KEY");
const data = await res.json();