LinkedIn Jobs Scraper avatar

LinkedIn Jobs Scraper

Pricing

Pay per event

Go to Apify Store
LinkedIn Jobs Scraper

LinkedIn Jobs Scraper

Export LinkedIn job postings by keyword and location from LinkedIn's public guest jobs search — title, company, location, posting date, job URL. Batch multiple keyword/location searches in one run, fault-isolated. JSON/CSV export.

Pricing

Pay per event

Rating

0.0

(0)

Developer

DevilScrapes

DevilScrapes

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share


🎯 What this scrapes

Point this Actor at one or more job-title keywords and one or more locations, and it runs the full cross product as independent searches against LinkedIn's public guest jobs search. Each search unit walks the result pages until it reaches the end of that search's job list or a safety cap you set. Every job card is parsed into a typed row — title, company name and LinkedIn URL, the job's own location, a cleaned job URL, posting date, and an optional benefit/status label. Multiple keyword/location pairs run in the same batch, and one pair's error never sinks the others.

🔥 What we handle for you

  • 🛡️ Browser fingerprint rotationcurl-cffi replays a real browser's TLS handshake (Chrome and Firefox profiles), rotated per request.
  • 🔁 Retries with exponential backoff on 408 / 429 / 503 and network errors — up to 5 attempts, Retry-After honoured.
  • 🧱 Per-search fault isolation — a failed or empty keyword/location pair is logged and skipped; every other pair in the batch still runs.
  • 🧊 Clean, typed dataset rows — Pydantic-validated, deduplicated by job id, ISO-8601 timestamps, JSON / CSV / Excel export straight from the Apify Console.
  • 💰 Pay-Per-Event pricing — you only pay for job rows that land in your dataset. No data, no charge.

💡 Use cases

  • Talent sourcing — pull fresh postings for a role/location combo to see which companies are hiring right now.
  • Market and salary research — batch a role across multiple cities or countries to gauge hiring volume and posting cadence.
  • Recruiting agency lead gen — find companies actively posting a given role as warm outreach targets.
  • Job board aggregation — feed a clean, typed dataset of LinkedIn postings into your own job board or alert pipeline.

⚙️ How to use it

  1. Click Try for free at the top of the page.
  2. Add one or more job-title keywords to keywords; add one or more locations to locations — most other fields have sensible defaults.
  3. Click Start. Rows stream into the run's dataset as each keyword/location pair is searched.
  4. Export from Storage → Dataset as JSON, CSV, or Excel — or fetch via the API.

📥 Input

FieldTypeRequiredDefaultNotes
keywordsarrayyes["python developer", "data engineer"]Job-title/keyword searches — one guest jobs search per item, run against every location.
locationsarrayno["United States"]Locations to search. The Actor runs the full keywords x locations cross product.
maxPagesPerSearchintegerno10Safety cap on the offset-walk depth (10 job cards per page) for one search unit.
maxJobsPerSearchintegerno100Cap on job rows collected for a single search unit before its walk stops early.
maxTotalResultsintegerno500Cap on total job rows emitted across the whole run.
maxRunSecondsintegerno600Wall-clock budget across all search units; the run ships whatever it collected so far. Capped at 3 480s, below the platform's own hard limit.
proxyConfigurationobjectno{"useApifyProxy": true}Apify Proxy config — defaults to a bare flag (DATACENTER); every probe of this specific endpoint cleared direct and unproxied.

Example input

{
"keywords": ["python developer", "data engineer"],
"locations": ["United States", "United Kingdom"],
"maxJobsPerSearch": 100,
"maxTotalResults": 500,
"maxRunSeconds": 600,
"proxyConfiguration": {
"useApifyProxy": true
}
}

📤 Output

Every row is one parsed job posting.

FieldTypeNotes
search_keywordstringThe input keyword searched (echoed, not re-parsed).
search_locationstringThe input location searched (echoed, not re-parsed).
job_idstringNumeric job id parsed from the card's data-entity-urn.
titlestringJob title.
company_namestring | nullHiring company name.
company_urlstring | nullCompany's LinkedIn URL, when present.
locationstring | nullThe job's own location string (may differ from the search's input location).
job_urlstring | nullCleaned canonical job URL — tracking query params stripped.
posted_atstring | nullISO calendar date (YYYY-MM-DD) the job was listed.
posted_textstring | nullHuman-readable posting age, e.g. "2 months ago".
benefit_labelstring | nullOptional benefit/status label LinkedIn shows on the card (e.g. "Actively Hiring").
page_numberinteger1-based page within this search unit's offset walk.
scraped_atstringISO-8601 UTC timestamp at parse time.

Example output

{
"search_keyword": "data engineer",
"search_location": "United States",
"job_id": "3812345678",
"title": "Senior Data Engineer",
"company_name": "Acme Corp",
"company_url": "https://www.linkedin.com/company/acme-corp",
"location": "Austin, TX",
"job_url": "https://www.linkedin.com/jobs/view/3812345678",
"posted_at": "2026-09-10",
"posted_text": "1 week ago",
"benefit_label": "Actively Hiring",
"page_number": 1,
"scraped_at": "2026-09-17T14:03:22.104Z"
}

💰 Pricing

Pay-Per-Event — you pay only when these events fire:

EventUSDWhat it is
actor-start$0.20Base fee, once per run (warm-up, proxy resolution)
job-result$0.003Per job-posting row written to the dataset

Example: 1 000 job rows in one run ≈ $3.20 ($0.20 + 1 000 × $0.003). No subscription, no minimum — Apify gives every new account free trial credit.

🚧 Limitations

  • Real page size is 10 job cards per response, not 50 — size maxJobsPerSearch / maxPagesPerSearch with that in mind.
  • Default proxy tier is DATACENTER, not RESIDENTIAL — a bare {"useApifyProxy": true}. Every probe of this specific guest endpoint (both browser profiles, multiple pagination offsets, both stop-condition signals) cleared direct and unproxied with no anti-bot signal observed. Add apifyProxyGroups: ["RESIDENTIAL"] yourself if you ever see blocking on your account.
  • A broad or nonsense keyword can still return generic matches instead of zero results. That's LinkedIn's own guest-search fallback behavior — this Actor doesn't add or remove client-side relevance filtering, so a very loose search may return jobs you didn't expect.
  • When a search unit's walk stops early, the run's status message is prefixed [TRUNCATED] instead of [COMPLETE], so you always know whether you got everything or hit a cap.
  • No login or session persistence — every request is anonymous, reading only what LinkedIn's guest jobs search already serves to a public visitor.

❓ FAQ

Is this legal?

We only fetch what LinkedIn's public guest jobs search already serves to anonymous visitors — no login, no session cookies, no credential harvesting. Respect LinkedIn's terms of service before using output commercially.

What if a keyword/location pair has no jobs?

The run still succeeds. That pair's rows are simply zero, and the status message says so — a real zero-match result is never treated as a failure.

Why does my run say [TRUNCATED] instead of [COMPLETE]?

[TRUNCATED] means at least one search unit's walk stopped before reaching the end of its result list — a safety cap (maxJobsPerSearch, maxPagesPerSearch, maxTotalResults, or maxRunSeconds) was hit first. This Actor bills per row, so we never let a partial run's status message read the same as a finished one. Raise the relevant cap and re-run for the rest.

Why are some fields null?

LinkedIn's guest-search markup doesn't guarantee every field on every card — for example, not every posting carries a benefit/status label. We never fabricate a value — unconfirmed fields come back null rather than a guess.

Can I track new postings over time?

Each run is a single snapshot. Schedule the Actor daily/weekly in Apify Console and diff successive dataset exports to catch new listings.

💬 Your feedback

Spotted a bug, hit a weird edge case, or need a new field? Open an issue on the Actor's Issues tab on Apify Console — we ship fixes weekly and we read every report.