Average Duration of Unemployment was last reported at 26.3 Weeks as of August 1, 2026. That is up 5.62% from the prior reading of 24.9 Weeks. This indicator is reported Monthly and seasonally adjusted, and is tracked under the Labor category. The next scheduled release is October 2, 2026.
| Date | Value (Weeks) |
|---|---|
| Aug 2026 | 26.3 |
| Jul 2026 | 24.9 |
| Jun 2026 | 25.5 |
| May 2026 | 26.0 |
| Apr 2026 | 24.4 |
| Mar 2026 | 25.3 |
| Feb 2026 | 25.7 |
| Jan 2026 | 23.7 |
| Dec 2025 | 24.4 |
| Nov 2025 | 23.1 |
| Date | Value (Weeks) |
|---|---|
| Sep 2025 | 24.1 |
| Aug 2025 | 24.5 |
| Jul 2025 | 24.0 |
| Jun 2025 | 23.1 |
| May 2025 | 21.9 |
| Apr 2025 | 23.2 |
| Mar 2025 | 22.9 |
| Feb 2025 | 21.4 |
| Jan 2025 | 22.0 |
| Dec 2024 | 23.7 |
Pull the full history of Average Duration of Unemployment 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=USUNEMPDUR&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USUNEMPDUR", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USUNEMPDUR&period=max&api_key=YOUR_API_KEY");
const data = await res.json();