LinkedIn Hiring Signal Monitor
Pricing
from $3.20 / 1,000 actionable insights
LinkedIn Hiring Signal Monitor
Turn company, person, or job records into ranked, evidence-backed LinkedIn commercial signals.
LinkedIn Hiring Signal Monitor
Pricing
from $3.20 / 1,000 actionable insights
Turn company, person, or job records into ranked, evidence-backed LinkedIn commercial signals.
You can access the LinkedIn Hiring Signal Monitor 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 "records": [12 {13 "jobId": "li-demo-001",14 "companyName": "Northstar AI",15 "title": "Head of Revenue Operations",16 "location": "Singapore",17 "employmentType": "Full-time",18 "employeeCount": 240,19 "jobCount": 19,20 "applicantsCount": 31,21 "description": "Build our new APAC revenue function",22 "observedAt": "2026-08-02T10:00:00Z",23 "productWorkflow": "linkedin-hiring-signal-monitor"24 }25 ],26 "previousRecords": [27 {28 "jobId": "li-demo-001",29 "companyName": "Northstar AI",30 "title": "Revenue Operations Lead",31 "location": "Singapore",32 "employmentType": "Full-time",33 "employeeCount": 205,34 "jobCount": 7,35 "applicantsCount": 12,36 "description": "Support APAC sales operations",37 "observedAt": "2026-07-02T10:00:00Z",38 "productWorkflow": "linkedin-hiring-signal-monitor"39 }40 ]41};42
43// Run the Actor and wait for it to finish44const run = await client.actor("night111/linkedin-hiring-signal-monitor").call(input);45
46// Fetch and print Actor results from the run's dataset (if any)47console.log('Results from dataset');48console.log(`πΎ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);49const { items } = await client.dataset(run.defaultDatasetId).listItems();50items.forEach((item) => {51 console.dir(item);52});53
54// π 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 LinkedIn Hiring Signal Monitor API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-clientOther API clients include: