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.
1from apify_client import ApifyClient2
3# Initialize the ApifyClient with your Apify API token4# Replace '<YOUR_API_TOKEN>' with your token.5client = ApifyClient("<YOUR_API_TOKEN>")6
7# Prepare the Actor input8run_input = {9 "schemaVersion": "1.0",10 "analysisId": "jobs-ge-weekly-sample",11 "sampleCompleteness": "BOUNDED_OR_PARTIAL_SAMPLE",12 "observations": [13 {14 "sourceBoard": "jobs-ge",15 "sourceJobId": "sample-001",16 "title": "Backend Engineer",17 "company": "Example One",18 "location": "Tbilisi",19 "category": "Engineering",20 "employmentType": "Full-time",21 "remote": False,22 "salaryMin": 3000,23 "salaryMax": 4500,24 "salaryCurrency": "GEL",25 "salaryPeriod": "month",26 "postedAt": "2026-08-28T09:00:00.000Z",27 },28 {29 "sourceBoard": "jobs-ge",30 "sourceJobId": "sample-002",31 "title": "Data Engineer",32 "company": "Example Two",33 "location": "Tbilisi",34 "category": "Engineering",35 "employmentType": "Full-time",36 "remote": True,37 "salaryMin": 3500,38 "salaryMax": 5000,39 "salaryCurrency": "GEL",40 "salaryPeriod": "month",41 "postedAt": "2026-08-29T09:00:00.000Z",42 },43 {44 "sourceBoard": "jobs-ge",45 "sourceJobId": "sample-003",46 "title": "Platform Engineer",47 "company": "Example Three",48 "location": "Tbilisi",49 "category": "Engineering",50 "employmentType": "Full-time",51 "remote": False,52 "salaryMin": 4000,53 "salaryMax": 5500,54 "salaryCurrency": "GEL",55 "salaryPeriod": "month",56 "postedAt": "2026-08-30T09:00:00.000Z",57 },58 ],59}60
61# Run the Actor and wait for it to finish62run = client.actor("zinin/job-board-market-demand-analyzer").call(run_input=run_input)63
64# Fetch and print Actor results from the run's dataset (if there are any)65print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")66for item in client.dataset(run.default_dataset_id).iterate_items():67 print(item)68
69# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-startThe Apify API client for Python is the official library that allows you to use Job Board Market Demand Analyzer API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-clientOther API clients include: