Job Posting Deduper & Scorer
Pricing
Pay per usage
Go to Apify Store
Job Posting Deduper & Scorer
Clean, deduplicate, normalize, and score job posting data from multiple sources for job seekers, recruiters, career coaches, and AI job-search agents.
Job Posting Deduper & Scorer
Pricing
Pay per usage
Clean, deduplicate, normalize, and score job posting data from multiple sources for job seekers, recruiters, career coaches, and AI job-search agents.
You can access the Job Posting Deduper & Scorer programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1import { ApifyClient } from 'apify-client';2
3// Initialize the ApifyClient with your Apify API token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "idealKeywords": [12 "remote",13 "engineer",14 "developer",15 "data",16 "ai"17 ],18 "excludeKeywords": [19 "commission only",20 "unpaid",21 "recruiter"22 ],23 "locations": [24 "remote"25 ]26};27
28// Run the Actor and wait for it to finish29const run = await client.actor("knotted_tussock/job-posting-deduper-scorer").call(input);30
31// Fetch and print Actor results from the run's dataset (if any)32console.log('Results from dataset');33console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);34const { items } = await client.dataset(run.defaultDatasetId).listItems();35items.forEach((item) => {36 console.dir(item);37});38
39// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docsThe Apify API client for JavaScript is the official library that allows you to use Job Posting Deduper & Scorer API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-clientOther API clients include: