China Inflation was last reported at 0.8 percent as of August 1, 2026. That is up 60.00% from the prior reading of 0.5 percent. This indicator is reported Monthly and not seasonally adjusted, and is tracked under the International category.
| Date | Value (percent) |
|---|---|
| Aug 2026 | 0.8 |
| Jul 2026 | 0.5 |
| Jun 2026 | 1.0 |
| May 2026 | 1.2 |
| Apr 2026 | 1.2 |
| Mar 2026 | 1.0 |
| Feb 2026 | 1.3 |
| Jan 2026 | 0.2 |
| Dec 2025 | 0.8 |
| Nov 2025 | 0.7 |
| Date | Value (percent) |
|---|---|
| Oct 2025 | 0.2 |
| Sep 2025 | -0.3 |
| Aug 2025 | -0.4 |
| Jul 2025 | 0.0 |
| Jun 2025 | 0.1 |
| May 2025 | -0.1 |
| Apr 2025 | -0.1 |
| Mar 2025 | -0.1 |
| Feb 2025 | -0.7 |
| Jan 2025 | 0.5 |
Pull the full history of China 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=CNINFLATION&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "CNINFLATION", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=CNINFLATION&period=max&api_key=YOUR_API_KEY");
const data = await res.json();