Job Board Market Demand Analyzer
Pricing
from $16.15 / 1,000 privacy-bounded demand report delivereds
Job Board Market Demand Analyzer
Aggregate buyer-authorized job-board observations into privacy-bounded sample demand metrics.
Job Board Market Demand Analyzer
Pricing
from $16.15 / 1,000 privacy-bounded demand report delivereds
Aggregate buyer-authorized job-board observations into privacy-bounded sample demand metrics.
You can access the Job Board Market Demand Analyzer 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 API & Integrations 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 "schemaVersion": "1.0",12 "analysisId": "jobs-ge-weekly-sample",13 "sampleCompleteness": "BOUNDED_OR_PARTIAL_SAMPLE",14 "observations": [15 {16 "sourceBoard": "jobs-ge",17 "sourceJobId": "sample-001",18 "title": "Backend Engineer",19 "company": "Example One",20 "location": "Tbilisi",21 "category": "Engineering",22 "employmentType": "Full-time",23 "remote": false,24 "salaryMin": 3000,25 "salaryMax": 4500,26 "salaryCurrency": "GEL",27 "salaryPeriod": "month",28 "postedAt": "2026-08-28T09:00:00.000Z"29 },30 {31 "sourceBoard": "jobs-ge",32 "sourceJobId": "sample-002",33 "title": "Data Engineer",34 "company": "Example Two",35 "location": "Tbilisi",36 "category": "Engineering",37 "employmentType": "Full-time",38 "remote": true,39 "salaryMin": 3500,40 "salaryMax": 5000,41 "salaryCurrency": "GEL",42 "salaryPeriod": "month",43 "postedAt": "2026-08-29T09:00:00.000Z"44 },45 {46 "sourceBoard": "jobs-ge",47 "sourceJobId": "sample-003",48 "title": "Platform Engineer",49 "company": "Example Three",50 "location": "Tbilisi",51 "category": "Engineering",52 "employmentType": "Full-time",53 "remote": false,54 "salaryMin": 4000,55 "salaryMax": 5500,56 "salaryCurrency": "GEL",57 "salaryPeriod": "month",58 "postedAt": "2026-08-30T09:00:00.000Z"59 }60 ]61};62
63// Run the Actor and wait for it to finish64const run = await client.actor("zinin/job-board-market-demand-analyzer").call(input);65
66// Fetch and print Actor results from the run's dataset (if any)67console.log('Results from dataset');68console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);69const { items } = await client.dataset(run.defaultDatasetId).listItems();70items.forEach((item) => {71 console.dir(item);72});73
74// 📚 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 Board Market Demand Analyzer API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-clientOther API clients include: