Consumer Price Index was last reported at 334.131 Index 1982-84=100 as of August 1, 2026. That is up 0.40% from the prior reading of 332.813 Index 1982-84=100. This indicator is reported Monthly and seasonally adjusted, and is tracked under the Inflation category. The next scheduled release is October 14, 2026.
| Date | Value (Index 1982-84=100) |
|---|---|
| Aug 2026 | 334.131 |
| Jul 2026 | 332.813 |
| Jun 2026 | 332.568 |
| May 2026 | 333.979 |
| Apr 2026 | 332.407 |
| Mar 2026 | 330.293 |
| Feb 2026 | 327.460 |
| Jan 2026 | 326.588 |
| Dec 2025 | 326.031 |
| Nov 2025 | 325.063 |
| Date | Value (Index 1982-84=100) |
|---|---|
| Sep 2025 | 324.245 |
| Aug 2025 | 323.291 |
| Jul 2025 | 322.169 |
| Jun 2025 | 321.435 |
| May 2025 | 320.620 |
| Apr 2025 | 320.302 |
| Mar 2025 | 319.785 |
| Feb 2025 | 319.679 |
| Jan 2025 | 318.961 |
| Dec 2024 | 317.604 |
Pull the full history of Consumer Price Index 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=USCPI&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USCPI", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USCPI&period=max&api_key=YOUR_API_KEY");
const data = await res.json();