Teen Unemployment Rate was last reported at 14.1 percent as of August 1, 2026. That is up 16.53% from the prior reading of 12.1 percent. 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 (percent) |
|---|---|
| Aug 2026 | 14.1 |
| Jul 2026 | 12.1 |
| Jun 2026 | 14.6 |
| May 2026 | 14.7 |
| Apr 2026 | 14.4 |
| Mar 2026 | 13.7 |
| Feb 2026 | 14.9 |
| Jan 2026 | 13.6 |
| Dec 2025 | 15.7 |
| Nov 2025 | 16.3 |
| Date | Value (percent) |
|---|---|
| Sep 2025 | 13.3 |
| Aug 2025 | 13.9 |
| Jul 2025 | 15.2 |
| Jun 2025 | 14.5 |
| May 2025 | 13.4 |
| Apr 2025 | 13.0 |
| Mar 2025 | 13.8 |
| Feb 2025 | 13.0 |
| Jan 2025 | 11.8 |
| Dec 2024 | 12.3 |
Pull the full history of Teen 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=USUNEMPYOUTH&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USUNEMPYOUTH", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USUNEMPYOUTH&period=max&api_key=YOUR_API_KEY");
const data = await res.json();