World Bank Development Goals - Free SDG Tracking API
Pricing
$100.00 / 1,000 charged when a workforce and labor intelligence ans
World Bank Development Goals - Free SDG Tracking API
Free API for UN Sustainable Development Goals (SDG) tracking. No subscription. Track progress by country for poverty, health, education, development metrics. Government data, pay-per-use.
Pricing
$100.00 / 1,000 charged when a workforce and labor intelligence ans
Rating
0.0
(0)
Developer
daehwan kim
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
4 days ago
Last modified
Share
Workforce & Labor Intelligence - BLS/Census Data
Replaces Lightcast/EMSI ($10K-$20K/yr) using free BLS, Census QWI, and O*NET APIs. 5 modes: occupation analysis, labor market, wage trends, industry workforce, and skills demand. SOC-level wage data, hiring rates, and employment projections at $0 per query.
Features
- Analyze any occupation with SOC-level wage data, employment counts, and outlook projections from BLS
- Retrieve regional labor market statistics using Census Quarterly Workforce Indicators (QWI)
- Track wage trends over time with BLS Occupational Employment and Wage Statistics (OEWS)
- Profile industry workforce composition including hiring rates and separation trends by NAICS code
- Identify skills demand and in-demand competencies using O*NET occupation data
Input Parameters
| Parameter | Type | Description | Default |
|---|---|---|---|
mode | string | Analysis mode: occupation_analysis, labor_market, wage_trends, industry_workforce, skills_demand | occupation_analysis |
occupation | string | Occupation name to analyze (e.g., 'software developer', 'registered nurse', 'data scientist') | — |
socCode | string | Standard Occupational Classification (SOC) code (e.g., '15-1252' for Software Developers) | — |
state | string | Two-letter US state abbreviation for regional labor market data (e.g., 'CA', 'TX', 'NY') | — |
industryCode | string | 2-6 digit NAICS industry code (e.g., '54' for Professional Services, '62' for Healthcare) | — |
years | integer | Number of years of historical wage trend data to retrieve (1-10) | 5 |
Output
The actor returns structured JSON data with wage statistics, employment counts, growth projections, skills inventories, and regional labor market snapshots.
Pricing
This actor uses pay-per-event pricing at $0.05 per successful analysis.
Usage
- Set your input parameters
- Run the actor
- Get results from the dataset
API Integration
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: 'YOUR_TOKEN' });const run = await client.actor('ntriqpro/workforce-labor-intelligence').call({mode: 'occupation_analysis',occupation: 'software developer',state: 'CA',});const { items } = await client.dataset(run.defaultDatasetId).listItems();