LinkedIn Similar Jobs Scraper avatar

LinkedIn Similar Jobs Scraper

Pricing

$0.50 / 1,000 results

Go to Apify Store
LinkedIn Similar Jobs Scraper

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

Danny

Maintained by Community

Actor 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

ParameterTypeRequiredDescription
job_urls_or_idsarrayYesSeed LinkedIn job URLs or ids to expand.
max_resultsintegerNoMax 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

FieldDescription
job_idRelated job id
titleRelated job title
company_nameEmployer (derived from the URL slug)
linkCanonical job URL
source_job_idThe 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 ApifyClient
client = 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.