Employer Hiring Concentration Risk Intelligence
Pricing
from $8.40 / 1,000 results
Employer Hiring Concentration Risk Intelligence
Turn recurring job datasets into employer concentration risk across roles, locations and hiring clusters.
Employer Hiring Concentration Risk Intelligence
Pricing
from $8.40 / 1,000 results
Turn recurring job datasets into employer concentration risk across roles, locations and hiring clusters.
You can access the Employer Hiring Concentration Risk Intelligence 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 "currentItems": [10 {11 "id": "j1",12 "company": "Acme",13 "role": "AI Engineer",14 "location": "Austin",15 "openings": 18,16 },17 {18 "id": "j2",19 "company": "Acme",20 "role": "AI Engineer",21 "location": "Austin",22 "openings": 14,23 },24 {25 "id": "j3",26 "company": "Beta",27 "role": "Data Engineer",28 "location": "Boston",29 "openings": 6,30 },31 ],32 "previousItems": [33 {34 "id": "j1",35 "company": "Acme",36 "role": "AI Engineer",37 "location": "Austin",38 "openings": 6,39 },40 {41 "id": "j3",42 "company": "Beta",43 "role": "Data Engineer",44 "location": "Boston",45 "openings": 5,46 },47 ],48}49
50# Run the Actor and wait for it to finish51run = client.actor("quanmatrix/employer-hiring-concentration-risk-intelligence").call(run_input=run_input)52
53# Fetch and print Actor results from the run's dataset (if there are any)54print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")55for item in client.dataset(run.default_dataset_id).iterate_items():56 print(item)57
58# 📚 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 Employer Hiring Concentration Risk Intelligence API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-clientOther API clients include: