Employment to Population Ratio was last reported at 59.1 % as of August 1, 2026. That is up 0.34% from the prior reading of 58.9 %. 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 | 59.1 |
| Jul 2026 | 58.9 |
| Jun 2026 | 59.0 |
| May 2026 | 59.2 |
| Apr 2026 | 59.1 |
| Mar 2026 | 59.2 |
| Feb 2026 | 59.3 |
| Jan 2026 | 59.4 |
| Dec 2025 | 59.7 |
| Nov 2025 | 59.6 |
| Date | Value (%) |
|---|---|
| Sep 2025 | 59.7 |
| Aug 2025 | 59.6 |
| Jul 2025 | 59.6 |
| Jun 2025 | 59.7 |
| May 2025 | 59.7 |
| Apr 2025 | 60.0 |
| Mar 2025 | 59.9 |
| Feb 2025 | 59.9 |
| Jan 2025 | 60.1 |
| Dec 2024 | 59.9 |
Pull the full history of Employment to Population Ratio 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=USEPOP&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USEPOP", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USEPOP&period=max&api_key=YOUR_API_KEY");
const data = await res.json();