Canada Inflation was last reported at 3.0 percent as of August 1, 2026. That is up 0.06% from the prior reading of 3.0 percent. This indicator is reported Monthly and not seasonally adjusted, and is tracked under the International category.
| Date | Value (percent) |
|---|---|
| Aug 2026 | 3.0 |
| Jul 2026 | 3.0 |
| Jun 2026 | 2.8 |
| May 2026 | 3.2 |
| Apr 2026 | 2.8 |
| Mar 2026 | 2.4 |
| Feb 2026 | 1.8 |
| Jan 2026 | 2.3 |
| Dec 2025 | 2.4 |
| Nov 2025 | 2.2 |
| Date | Value (percent) |
|---|---|
| Oct 2025 | 2.2 |
| Sep 2025 | 2.4 |
| Aug 2025 | 1.9 |
| Jul 2025 | 1.7 |
| Jun 2025 | 1.9 |
| May 2025 | 1.7 |
| Apr 2025 | 1.7 |
| Mar 2025 | 2.3 |
| Feb 2025 | 2.6 |
| Jan 2025 | 1.9 |
Pull the full history of Canada 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=CAINFLATION&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "CAINFLATION", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=CAINFLATION&period=max&api_key=YOUR_API_KEY");
const data = await res.json();