Mexico Inflation was last reported at 3.3 percent as of August 1, 2026. That is up 4.63% from the prior reading of 3.1 percent. This indicator is reported Monthly and not seasonally adjusted, and is tracked under the International category.
| Date | Value (percent) |
|---|---|
| Aug 2026 | 3.3 |
| Jul 2026 | 3.1 |
| Jun 2026 | 3.4 |
| May 2026 | 3.9 |
| Apr 2026 | 4.4 |
| Mar 2026 | 4.6 |
| Feb 2026 | 4.0 |
| Jan 2026 | 3.8 |
| Dec 2025 | 3.7 |
| Nov 2025 | 3.8 |
| Date | Value (percent) |
|---|---|
| Oct 2025 | 3.6 |
| Sep 2025 | 3.8 |
| Aug 2025 | 3.6 |
| Jul 2025 | 3.5 |
| Jun 2025 | 4.3 |
| May 2025 | 4.4 |
| Apr 2025 | 3.9 |
| Mar 2025 | 3.8 |
| Feb 2025 | 3.8 |
| Jan 2025 | 3.6 |
Pull the full history of Mexico Inflation 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=MXINFLATION&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "MXINFLATION", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=MXINFLATION&period=max&api_key=YOUR_API_KEY");
const data = await res.json();