Trimmed Mean PCE was last reported at 2.28 % as of July 1, 2026. That is up 0.88% from the prior reading of 2.26 %. This indicator is reported Monthly and seasonally adjusted, and is tracked under the Inflation category. The next scheduled release is September 30, 2026.
| Date | Value (%) |
|---|---|
| Jul 2026 | 2.28 |
| Jun 2026 | 2.26 |
| May 2026 | 2.43 |
| Apr 2026 | 2.35 |
| Mar 2026 | 2.36 |
| Feb 2026 | 2.34 |
| Jan 2026 | 2.41 |
| Dec 2025 | 2.44 |
| Nov 2025 | 2.51 |
| Oct 2025 | 2.55 |
| Date | Value (%) |
|---|---|
| Sep 2025 | 2.70 |
| Aug 2025 | 2.80 |
| Jul 2025 | 2.69 |
| Jun 2025 | 2.70 |
| May 2025 | 2.61 |
| Apr 2025 | 2.64 |
| Mar 2025 | 2.65 |
| Feb 2025 | 2.73 |
| Jan 2025 | 2.77 |
| Dec 2024 | 2.98 |
Pull the full history of Trimmed Mean PCE 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=USPCETRIM&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USPCETRIM", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USPCETRIM&period=max&api_key=YOUR_API_KEY");
const data = await res.json();