OECD Unemployment Rate was last reported at 4.9 percent as of July 1, 2026. That is down 0.49% from the prior reading of 4.9 percent. This indicator is reported Monthly and seasonally adjusted, and is tracked under the International category.
| Date | Value (percent) |
|---|---|
| Jul 2026 | 4.9 |
| Jun 2026 | 4.9 |
| May 2026 | 5.0 |
| Apr 2026 | 5.0 |
| Mar 2026 | 5.0 |
| Feb 2026 | 5.1 |
| Jan 2026 | 5.0 |
| Dec 2025 | 5.0 |
| Nov 2025 | 5.1 |
| Sep 2025 | 5.1 |
| Date | Value (percent) |
|---|---|
| Aug 2025 | 5.0 |
| Jul 2025 | 4.9 |
| Jun 2025 | 4.9 |
| May 2025 | 5.0 |
| Apr 2025 | 4.9 |
| Mar 2025 | 4.9 |
| Feb 2025 | 4.9 |
| Jan 2025 | 4.9 |
| Dec 2024 | 4.9 |
| Nov 2024 | 4.9 |
Pull the full history of OECD Unemployment Rate 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=OECDUNEMP&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "OECDUNEMP", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=OECDUNEMP&period=max&api_key=YOUR_API_KEY");
const data = await res.json();