Real GDP per Capita was last reported at 70,809 Chained 2017 $ as of April 1, 2026. That is up 0.32% from the prior reading of 70,583 Chained 2017 $. This indicator is reported Quarterly and saar, and is tracked under the Growth category. The next scheduled release is September 30, 2026.
| Date | Value (Chained 2017 $) |
|---|---|
| 2026 Q2 | 70,809 |
| 2026 Q1 | 70,583 |
| 2025 Q4 | 70,249 |
| 2025 Q3 | 70,218 |
| 2025 Q2 | 69,549 |
| 2025 Q1 | 68,979 |
| 2024 Q4 | 69,168 |
| 2024 Q3 | 68,951 |
| 2024 Q2 | 68,524 |
| 2024 Q1 | 68,082 |
| Date | Value (Chained 2017 $) |
|---|---|
| 2023 Q4 | 68,089 |
| 2023 Q3 | 67,689 |
| 2023 Q2 | 67,077 |
| 2023 Q1 | 66,789 |
| 2022 Q4 | 66,433 |
| 2022 Q3 | 66,120 |
| 2022 Q2 | 65,777 |
| 2022 Q1 | 65,773 |
| 2021 Q4 | 66,011 |
| 2021 Q3 | 64,990 |
Pull the full history of Real GDP per Capita 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=USGDPPC&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USGDPPC", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USGDPPC&period=max&api_key=YOUR_API_KEY");
const data = await res.json();