LinkedIn Hiring Intent Monitor
Pricing
from $0.01 / 1,000 results
LinkedIn Hiring Intent Monitor
Monitor company hiring intent signals for lead generation and sales prioritization. Supports MVP mode and live Crawlee extraction with LinkedIn-oriented parsing, normalized output records, and reliability metrics.
Pricing
from $0.01 / 1,000 results
Rating
0.0
(0)
Developer

furkan beydemir
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
7 days ago
Last modified
Categories
Share
Track company-level hiring intent signals for outbound, lead scoring, and recruitment intelligence workflows.
This Actor is designed for teams searching for:
- LinkedIn hiring intent monitor
- hiring signal tracker for B2B lead generation
- company hiring trend detection
- sales intelligence from hiring activity
What this MVP does
- Validates input for company URLs and/or search keywords.
- Generates deterministic hiring-intent records in
mvpmode. - Supports a
liveconnector mode built with CrawleeRequestQueue+CheerioCrawler. - Applies LinkedIn-specific selector parsing first, then falls back to generic text heuristics.
- Produces normalized company-level trend output for downstream integrations.
Best use cases
- Prioritize outbound account lists with hiring momentum signals.
- Enrich CRM records with hiring trend data.
- Build alerts for expansion-likelihood changes by company.
- Feed BI dashboards with normalized hiring-intent records.
Input (MVP)
companyUrls- direct company URLssearchKeywords- keyword seedslocationKeywords- optional location filtersmaxCompanies- output capmaxJobsPerCompany- per-company role capincludeJobEnrichment- optional enriched fieldsexecutionMode-mvporliverequestDelayMs- delay between live requestsmaxRequestRetries- retry count for live fetchesrequestTimeoutMs- request timeout for live fetchesmaxConcurrency- parallel live requestsproxyConfiguration- optional Apify proxy settings
Output (MVP)
companySlug,companyUrl,openRoleCount,hiringSpikeScoreroleDistribution,locationDistributionsignals(growth/risk/opportunity)extractionMeta(live mode parser diagnostics)source,relatedToolsUrl(Discover Web Tools funnel links)
Important note
mvp mode runs as mvp-skeleton-no-live-scrape and does not fetch live pages.
live mode runs as live-connector-heuristic and fetches provided companyUrls to derive hiring signals from page text heuristics.
This does not use authenticated LinkedIn scraping yet.
The actor focuses on company-level public-page signals and does not require LinkedIn login credentials.
Live run summary (OUTPUT_SUMMARY) also includes reliability metrics:
processedUrls,failedUrls,blockedCountparseCoverageRate,selectorModeCount,fallbackModeCount,nonLinkedInCount
Source URL for Apify (monorepo)
Use this in Actor Source settings:
https://github.com/beydemirfurkan/discoverwebtools.com-apify-actor#main:actors/linkedin-hiring-intent-monitor
Local run
npm installnpm run start
Environment variables (for live mode)
export APIFY_TOKEN="your_apify_token"export APIFY_PROXY_PASSWORD="your_apify_proxy_password"
Notes:
- Keep these values only in environment variables or secret stores.
- Do not commit real credentials into files.
- Local proxy usage may be limited by your Apify plan; Actor runtime on Apify platform is recommended for full proxy behavior.
Test commands
npm run testnpm run test:smokenpm run test:live:local
MVP sample input
{"searchKeywords": ["ai hiring", "b2b data"],"locationKeywords": ["Istanbul", "Berlin"],"maxCompanies": 10,"maxJobsPerCompany": 40,"includeJobEnrichment": true}
Live mode sample input
{"executionMode": "live","companyUrls": ["https://www.linkedin.com/company/apify/"],"locationKeywords": ["Berlin"],"maxCompanies": 1,"maxJobsPerCompany": 40,"requestDelayMs": 1200,"maxRequestRetries": 2,"requestTimeoutMs": 15000,"maxConcurrency": 3,"includeJobEnrichment": true}
MVP sample output record
{"source": "https://discoverwebtools.com","relatedToolsUrl": "https://discoverwebtools.com/tools?category=seo-tools","sourceMode": "mvp-skeleton-no-live-scrape","generatedAt": "2026-03-05T12:00:00.000Z","companySlug": "seed-ai-hiring-istanbul","companyUrl": null,"keywordSeed": "seed://ai hiring/Istanbul","openRoleCount": 16,"hiringSpikeScore": 0.57,"roleDistribution": {"engineering": 5,"sales": 4,"marketing": 2,"operations": 3,"data": 2},"locationDistribution": {"primary": "Berlin","remoteShare": 0.3},"signals": {"expansionLikelihood": "medium","priorityForOutreach": "medium"},"enrichment": {"estimatedResponseRate": 0.12,"avgTimeToFillDays": 34}}
Apify deploy checklist
- Push changes to GitHub.
- Set Actor Source URL to the monorepo path shown above.
- Run a build.
- Execute actor with sample input.
- Validate dataset records and
OUTPUT_SUMMARY.