Labour Force Participation Rate was last reported at 61.6 % as of August 1, 2026. That is up 0.33% from the prior reading of 61.4 %. 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 (%) |
|---|---|
| Aug 2026 | 61.6 |
| Jul 2026 | 61.4 |
| Jun 2026 | 61.5 |
| May 2026 | 61.8 |
| Apr 2026 | 61.8 |
| Mar 2026 | 61.9 |
| Feb 2026 | 62.0 |
| Jan 2026 | 62.1 |
| Dec 2025 | 62.4 |
| Nov 2025 | 62.5 |
| Date | Value (%) |
|---|---|
| Sep 2025 | 62.5 |
| Aug 2025 | 62.3 |
| Jul 2025 | 62.2 |
| Jun 2025 | 62.3 |
| May 2025 | 62.4 |
| Apr 2025 | 62.6 |
| Mar 2025 | 62.5 |
| Feb 2025 | 62.5 |
| Jan 2025 | 62.6 |
| Dec 2024 | 62.5 |
Pull the full history of Labour Force Participation 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=USLFPR&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USLFPR", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USLFPR&period=max&api_key=YOUR_API_KEY");
const data = await res.json();