LinkedIn Similar Jobs Scraper
Pricing
$0.50 / 1,000 results
LinkedIn Similar Jobs Scraper
Expand a seed LinkedIn job into its related postings (~25-37 per seed). No login. Pay per result — $0.50/1k.
Pricing
$0.50 / 1,000 results
Rating
0.0
(0)
Developer
Danny
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
5 days ago
Last modified
Categories
Share
Expand a seed LinkedIn job into its related postings (the on-page 'similar jobs' section, ~25-37 per seed) — a discovery frontier for building job graphs. Returns clean JSON. $0.50 / 1,000 jobs.
Public, logged-out data only — no login, no cookies, no account.
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
job_urls_or_ids | array | Yes | Seed LinkedIn job URLs or ids to expand. |
max_results | integer | No | Max per seed |
Example Input
{"job_urls_or_ids": ["https://www.linkedin.com/jobs/view/4438850133"],"max_results": 40}
Output
Each dataset item is one job:
{"job_id": "4438850133","title": "...","company_name": "...","link": "...","source_job_id": "..."}
Fields
| Field | Description |
|---|---|
job_id | Related job id |
title | Related job title |
company_name | Employer (derived from the URL slug) |
link | Canonical job URL |
source_job_id | The seed job this was found from |
Pagination
Handled server-side — the actor returns the full result set for your input in one run (bounded by
max_results where applicable). LinkedIn's logged-out feed caps at ~500-530 unique jobs per query.
Python Client
from apify_client import ApifyClientclient = ApifyClient("YOUR_TOKEN")run = client.actor("good-apis/linkedin-similar-jobs-scraper").call(run_input={"job_urls_or_ids": ["https://www.linkedin.com/jobs/view/4438850133"],"max_results": 40})for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(item)
Node.js Client
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: 'YOUR_TOKEN' });const run = await client.actor('good-apis/linkedin-similar-jobs-scraper').call({"job_urls_or_ids": ["https://www.linkedin.com/jobs/view/4438850133"],"max_results": 40});const { items } = await client.dataset(run.defaultDatasetId).listItems();for (const item of items) console.log(item);
Install the client with npm install apify-client.
FAQ
How many results per seed? ~25-37, capped by max_results (default 40).
Does it converge? No — the similar-graph does not converge and LinkedIn refreshes each seed's list within ~24h, so re-crawling a seed surfaces new jobs.
What is one billed result? One related job = one result event at $0.50 / 1,000 jobs.