World Bank Development Goals - Free SDG Tracking API avatar

World Bank Development Goals - Free SDG Tracking API

Pricing

$100.00 / 1,000 charged when a workforce and labor intelligence ans

Go to Apify Store
World Bank Development Goals - Free SDG Tracking API

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

daehwan kim

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Categories

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

ParameterTypeDescriptionDefault
modestringAnalysis mode: occupation_analysis, labor_market, wage_trends, industry_workforce, skills_demandoccupation_analysis
occupationstringOccupation name to analyze (e.g., 'software developer', 'registered nurse', 'data scientist')
socCodestringStandard Occupational Classification (SOC) code (e.g., '15-1252' for Software Developers)
statestringTwo-letter US state abbreviation for regional labor market data (e.g., 'CA', 'TX', 'NY')
industryCodestring2-6 digit NAICS industry code (e.g., '54' for Professional Services, '62' for Healthcare)
yearsintegerNumber 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

  1. Set your input parameters
  2. Run the actor
  3. 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();