LinkedIn Job Scraper avatar

LinkedIn Job Scraper

Pricing

from $1.00 / 1,000 jobs

Go to Apify Store
LinkedIn Job Scraper

LinkedIn Job Scraper

Scrape LinkedIn job postings with advanced filters including location, time range, job type, experience level, and work type.

Pricing

from $1.00 / 1,000 jobs

Rating

0.0

(0)

Developer

Rigel Bytes

Rigel Bytes

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

1

Monthly active users

2 days ago

Last modified

Share

Extract thousands of job postings from LinkedIn with advanced search filters — location, time range, job type, experience level, and remote work type — to power job market research, recruitment analytics, and automated job alerts, for just $1 per 1,000 jobs.


What can LinkedIn Job Scraper do for you?

  • Build targeted job databases — Search by keyword, location, and filters to compile comprehensive lists of matching job postings for analysis or lead generation.
  • Monitor hiring trends — Track which companies are hiring, what roles are in demand, and how job markets shift over time.
  • Power recruitment tools — Feed structured LinkedIn job data into your ATS, CRM, or custom dashboards to streamline candidate sourcing.
  • Analyze competitors — See what roles your competitors are hiring for — a signal of growth areas, tech stacks, and strategic direction.
  • Automate job alerts — Schedule regular scrapes and export fresh listings to spreadsheets or databases without manual searching.
  • Enrich with company data — Optionally scrape each company's LinkedIn page for full details like description, follower count, and specialties.

What data can you extract?

FieldDescription
🔖 jobIdUnique LinkedIn job posting ID
📝 titleJob title
🏢 companyNameCompany name
🌐 companyUrlLinkedIn company page URL
🖼️ companyLogoCompany logo image URL
📍 locationFull location string (city, state, country)
🏙️ cityCity
🌍 countryCountry code (e.g. DE, US)
📅 datePostedPosting date (ISO 8601)
validThroughApplication deadline
💼 employmentTypeFULL_TIME, PART_TIME, CONTRACTOR, etc.
🏭 industryIndustry classification
⏱️ monthsOfExperienceExperience required (months)
🎓 educationLevelEducation requirement
🛠️ skillsRequired skills
📄 descriptionFull job description
🔗 urlDirect link to the job posting
📌 latitude / longitudeGPS coordinates

Why use this scraper?

  • 📊 Job market research — Analyze salary trends, in-demand skills, and hiring volume across industries and regions.
  • 🔍 Competitive intelligence — Track competitors' hiring patterns to understand their growth and technology investments.
  • 🧑‍💼 Recruitment & staffing — Build candidate-ready job pipelines with structured data you can filter, sort, and export.
  • 🤖 Automation & integration — Connect scraped data to Google Sheets, Airtable, Slack, or any tool via the Apify API.

Pricing

  • $1/1,000 jobs
  • No hidden fees or limits on usage.

Apify platform plans include free monthly compute units — check your plan for details.


How to use LinkedIn Job Scraper

  1. Create a free Apify account at apify.com/sign-up
  2. Open the LinkedIn Job Scraper at apify.com/rigelbytes/linkedin-job-scraper
  3. Enter your search queries — add keywords like "Python Developer" or "Data Scientist"
  4. Add filters — location, time range, job type, experience level, and remote/hybrid/on-site
  5. Click Start and let the scraper collect matching jobs
  6. Download your data in JSON, CSV, Excel, or access it via API

Input

FieldTypeRequiredDescription
searchQueriesarrayNoKeywords or job titles to search for (e.g. "Python Developer")
startUrlsarrayNoDirect LinkedIn job search URLs. Overrides searchQueries
locationsarrayNoLocation filters (e.g. "Germany", "London")
timeRangestringNoPosting date filter: any, past24Hours, pastWeek, pastMonth
jobTypearrayNoEmployment type: fullTime, partTime, contract, temporary, internship, volunteer
experienceLevelarrayNoExperience: internship, entryLevel, associate, midSenior, director, executive
remotearrayNoWork arrangement: onSite, remote, hybrid
maxItemsintegerNoMax jobs to scrape (0 = unlimited). Default: 0
extractCompanyDetailsbooleanNoAlso scrape each company's LinkedIn page for full details. Default: false
proxyConfigurationobjectNoProxy settings for anti-bot protection

📝 Copy for Use:

{
"searchQueries": ["Python Developer"],
"locations": ["Germany"],
"timeRange": "any",
"jobType": [],
"experienceLevel": [],
"remote": [],
"maxItems": 30,
"extractCompanyDetails": false,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}

Output

https://github.com/faizanalii/apify-images/blob/main/LinkedIn%20Job%20Scraper.gif?raw=true

Why Choose This Scraper?

  • Affordable: Pay only $1 per 1,000 jobs scraped.
  • Comprehensive: Extracts job details, company info, location, skills, and coordinates — 19 fields per listing.
  • Easy to Use: No coding needed — enter keywords and filters in the Apify Console, click Start, and download results.
  • Reliable: Built on Apify's infrastructure with automatic proxy rotation and retry logic to handle LinkedIn's anti-bot measures.
  • Shifter

    • Reliable residential proxies all over the world.
    • Cheap rates
    • Order Shifter Now
    • Get 10% Off any product, use coupan rigelbytes-YoBB.
  • OxyLabs

    • 100M+ Proxies
    • Fastest proxies in the market
    • Real profile, human-like Residential IPs
    • Quality assurance framework for most reliable IPs
    • Get Proxies
  • DataImpulse

Learn More About Proxies

  • Exclusive Deals: Some providers may offer special discounts or bonuses when you use our link.
  • Support Our Work: Each purchase helps us maintain and improve the tools and services we provide.
  • No Extra Cost: You pay the same price, but part of it goes to supporting our efforts.

Running via Apify Console

You can run this actor from the Apify Console by providing the necessary input parameters.

Running via API

You can trigger this actor using the Apify API, passing the required input in the request body.

# Python
from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("rigelbytes/linkedin-job-scraper").call(run_input={
"searchQueries": ["Python Developer"],
"locations": ["Germany"],
"timeRange": "any",
"maxItems": 30,
"extractCompanyDetails": False,
"proxyConfiguration": {
"useApifyProxy": True,
"apifyProxyGroups": ["RESIDENTIAL"]
}
})
results = client.dataset(run["defaultDatasetId"]).list_items().items
# JavaScript
import { ApifyClient } from "apify-client";
const client = new ApifyClient({ token: "YOUR_APIFY_TOKEN" });
const run = await client.actor("rigelbytes/linkedin-job-scraper").call({
searchQueries: ["Python Developer"],
locations: ["Germany"],
timeRange: "any",
maxItems: 30,
extractCompanyDetails: false,
proxyConfiguration: {
useApifyProxy: true,
apifyProxyGroups: ["RESIDENTIAL"]
}
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
# cURL
curl -X POST "https://api.apify.com/v2/acts/rigelbytes/linkedin-job-scraper/runs" \
-H "Authorization: Bearer YOUR_APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"searchQueries": ["Python Developer"],
"locations": ["Germany"],
"timeRange": "any",
"maxItems": 30,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}'

🚀 Other Tools by Rigel Bytes

Explore 78 more scraping tools by Rigel Bytes, organized by use case:

📱 Social Media

Scrape Instagram, TikTok, LinkedIn, and more for content research and marketing intelligence.

  • Export Instagram Reels — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Facebook Ads Scraper — Extract posts, profiles, and engagement data from Facebook for content research, influencer tracking, and marketing analytics.
  • Instagram Analytics Tool — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Comment Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Creator Stats — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Engagement Tool — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Post Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • instagram-posts — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Profile Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Reel Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • linkedin-company-details — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
  • Linkedin Company Scraper — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
  • LinkedIn Profile Scraper — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
  • Scrape Instagram Creators — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Tiktok Comment Scraper — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.
  • Tiktok Creator Stats — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.
  • Tiktok Engagement Rate — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.
  • TikTok Profile Scraper — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.

🏠 Real Estate

Extract property listings, prices, and agent data from top real estate platforms.

  • Airbnb Address Finder — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Availability Calendar — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Detailed Scraper - Search & Listing Details — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Images Downloader — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Listing — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Listing Urls — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Property Details — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Reviews — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Scraper - Search & Listing Details — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Bayut Scraper — Scrape property listings and market data from Bayut for market research, price monitoring, and investment analysis.
  • Boligsiden.dk Scraper — Scrape Danish real estate listings from Boligsiden.dk — for sale, sold, and rental properties with pricing, details,...
  • Daft.ie Property Scraper — Scrapes property listings from Daft.ie including residential, rental, commercial, and new homes across Ireland.
  • dubai-listing-scraper — Extract unlimited property listings from Bayut.com — the UAE's largest real estate platform. Get detailed property...
  • Export Airbnb Calendar — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Funda Netherlands Real Estate Scraper — Scrape property listings from Funda.nl — the largest real estate platform in the Netherlands. Supports buy and rent,...
  • Furnished Finder Fast — Scrape property listings and market data from Furnished Finder for market research, price monitoring, and investment analysis.
  • Extract Furnished Finder Hosts — Scrape property listings and market data from Furnished Finder for market research, price monitoring, and investment analysis.
  • FurnishedFinder — Scrape property listings and market data from Furnished Finder for market research, price monitoring, and investment analysis.
  • Hemnet.se Scraper - Swedish Real Estate Listings — Scrape property listings from Hemnet.se including for-sale, upcoming, and sold homes. Search by URL or location...
  • Immobiliare Italy Real Estate Scraper — Scrape property listings and market data from real estate portals for market research, price monitoring, and investment analysis.
  • Immobilienscout24 — Scrape property listings and market data from real estate portals for market research, price monitoring, and investment analysis.
  • Immobilienscout24-scraper — Scrape property listings and market data from real estate portals for market research, price monitoring, and investment analysis.
  • Immoweb Scraper - Belgium Property Listings — Scrapes property listings from Immoweb.be. Supports search result extraction with optional property detail enrichment.
  • Immowelt Property Scraper — The Immowelt Scraper helps you extract unlimited real estate listings from Immowelt with complete details including...
  • Immowelt Scraper — The Immowelt Scraper helps you extract unlimited real estate listings from Immowelt with complete details including...
  • Land.com Scraper — Scrape property listings and market data from Land.com for market research, price monitoring, and investment analysis.
  • Outdoorsy Scraper — Scrape property listings and market data from Outdoorsy for market research, price monitoring, and investment analysis.
  • Propertyfinder Scraper — Scrape property listings and market data from Property Finder for market research, price monitoring, and investment analysis.
  • Redfin Scraper — Scrape property listings and market data from Redfin for market research, price monitoring, and investment analysis.
  • Rightmove Scraper — Scrape property listings and market data from Rightmove for market research, price monitoring, and investment analysis.
  • RVshare Scraper — Scrape property listings and market data from RVshare for market research, price monitoring, and investment analysis.
  • Unlimited Redfin Scraper — Scrape property listings and market data from Redfin for market research, price monitoring, and investment analysis.
  • Zillow Detail Scraper — Scrape property listings and market data from Zillow for market research, price monitoring, and investment analysis.
  • Zillow Scraper — Scrape property listings and market data from Zillow for market research, price monitoring, and investment analysis.
  • Zoopla Scraper — Scrape property listings and market data from Zoopla for market research, price monitoring, and investment analysis.

✈️ Travel & Hospitality

Monitor rentals, bookings, and travel listings at scale.

  • Autotrader Scraper — Scrapes car listings from Autotrader.com with advanced search filters, pagination, and detailed vehicle data.
  • CarMax Scraper — Scrapes used car listings from CarMax.com with search URL, zip code filtering, and pagination support.
  • Cars.com Scraper — Scrapes car listings from Cars.com using their GraphQL API. Extracts detailed vehicle data including price, specs,...
  • Ticketmaster Scraper — Collect rental and travel listings from Ticketmaster for pricing intelligence and availability tracking.

🛒 E-commerce

Scrape products, prices, and marketplace data for competitive research.

  • Amazon Product Scraper — Scrape products, prices, and seller data from Amazon for competitor monitoring, pricing, and product research.
  • Amazon Search Scraper — Scrape products, prices, and seller data from Amazon for competitor monitoring, pricing, and product research.
  • AutoScout24 Scraper — Scrape car listings from AutoScout24 with full filter support. Extract makes, models, prices, mileage, seller info,...
  • Daraz — Scrape products, prices, and seller data from Daraz for competitor monitoring, pricing, and product research.
  • Etsy Scraper — Scrape products, prices, and seller data from Etsy for competitor monitoring, pricing, and product research.
  • Homedepot Scraper — HomeDepot Products Scraper lets you extract product data from homedepot.com using a collection URL and delivery ZIP....
  • Otodom Scraper - Polish Real Estate Listings — Scrapes property listings from Otodom.pl, Poland's leading real estate marketplace. Supports filters for transaction...

💼 Jobs & Recruitment

Collect job listings and company hiring data for market analysis.

  • ZipRecruiter Job Scraper — Scrape job listings from ZipRecruiter with search queries, locations, and radius filters. Extracts title, company,...

📩 Lead Generation

Find business contacts, leads, and company data for sales and outreach.

  • Company Service Finder — The Company Service Finder uses AI to extract and analyze company services from Google Search & Maps. Get detailed...
  • Doctify Scraper — Doctify Scraper lets you extract doctor and practice data from doctify.com using a search results URL. Collect...
  • FindLaw Law Firm Scraper - Attorney & Law Firm Data Extraction — Scrape law firm profiles from FindLaw.com. Extract detailed attorney and firm information including contact details,...
  • Google Maps Scraper — Find business leads and contact details from Google Maps for outbound sales, prospecting, and CRM enrichment.
  • Website Services Finder — Automatically extract and analyze company services from any business website using advanced AI. Choose from 5 AI...
  • Zillow Agents — Find business leads and contact details from Zillow for outbound sales, prospecting, and CRM enrichment.
  • Zillow Agents Phone — Find business leads and contact details from Zillow for outbound sales, prospecting, and CRM enrichment.

⭐ Reviews & Ratings

Monitor reviews and reputation data across review platforms.

  • Airbnb Listing Reviews — Collect reviews and ratings from Airbnb for reputation monitoring and customer insights.
  • BBB Scraper — Collect reviews and ratings from BBB for reputation monitoring and customer insights.
  • Rottentomatoes Reviews Scraper — Collect reviews and ratings from Rotten Tomatoes for reputation monitoring and customer insights.
  • Trustpilot Reviews Scraper — Collect reviews and ratings from Trustpilot for reputation monitoring and customer insights.

🍔 Food & Delivery

Extract restaurant, grocery, and delivery platform data.

  • Instacart Scraper — Scrape menus, stores, and delivery data from Instacart for data-driven research and automation.
  • Publix Scraper — Scrape menus, stores, and delivery data from Publix for data-driven research and automation.

🛠️ Developer Tools

General-purpose scraping and automation tools.

  • Web Crawler — This web crawler is designed to provide users with complete flexibility by allowing them to use their **own...

Understanding Proxies:

When scraping data or browsing anonymously, proxies are essential. They act as intermediaries, masking your original IP address and allowing you to send requests from another location.

Why Use Proxies?

  • Avoid IP Blocks: By routing requests through proxies, you prevent the target website from recognizing your IP as a scraper or spammer.
  • Access Geo-restricted Content: Proxies let you access content or websites restricted by location.
  • Enhance Anonymity: Hide your actual IP, ensuring privacy while scraping or browsing.

Types of Proxies

  1. Residential Proxies
    • Real IP addresses provided by ISPs to home users.
    • They mimic regular users, making them harder to detect.
    • Best for: Long-term, undetectable scraping, and avoiding blocks.
  2. Data Center Proxies
    • IP addresses from servers in data centers.
    • Faster and cheaper than residential proxies but easier to detect and block.
    • Best for: High-speed scraping, but with a higher risk of detection.
  3. Mobile Proxies
    • IPs provided by mobile carriers (3G/4G/5G networks).
    • Very difficult to detect, as they appear as regular mobile users.
    • Best for: Mobile-related scraping or avoiding sophisticated blocks.

Rotating Proxies vs. Straight Proxies

  • Rotating Proxies: Every request you send goes through a different proxy, making it harder for websites to detect patterns.
  • Straight Proxies: All requests are sent through the same proxy, making it easier to track your IP.

About Rigel Bytes

Rigel Bytes specializes in web scraping, automation, and data analytics. We help businesses extract and leverage valuable data for informed decision-making.

Contact Us

Ready to unlock the power of data? Reach out to us at (contact@rigelbytes.com) or book an appointment with us to learn more about how we can help you achieve your data goals.

Detailed Data

[
{
"title": "Python Developer",
"description": "Job Description DATAGROUP Polska... Design and implement robust, scalable, and efficient JAVA-based frontend as well as Python components for the ETL process.",
"datePosted": "2026-05-08T13:38:46.000Z",
"validThrough": "2026-11-04T13:38:46.000Z",
"employmentType": "FULL_TIME",
"companyName": "DATAGROUP",
"companyUrl": "https://de.linkedin.com/company/datagroup-se",
"companyLogo": "https://media.licdn.com/dms/image/v2/C4D0BAQFCZT1emBoUsw/company-logo_200_200/company-logo_200_200/0/1630477221838/datagroup_ag_logo?e=2147483647&v=beta&t=kHRk6yObQhtWun4zVyZKfRI6iNwfH5xZ2aTfFnDTOjQ",
"country": "DE",
"city": "Krakau",
"latitude": 51.36391,
"longitude": 11.857489,
"industry": "IT-Dienstleistungen und IT-Beratung",
"skills": "",
"monthsOfExperience": "",
"educationLevel": "bachelor degree",
"jobId": "4412111373",
"url": "https://de.linkedin.com/jobs/view/python-developer-at-datagroup-4412111373",
"location": "Krakau, Saxony-Anhalt, Germany"
},
{
"title": "Python Developer",
"description": "you'll be working on things like: - Data ingestion and metadata pipelines for whole slide images - De-identification and integrity checking of WSI files...",
"datePosted": "2026-06-18T10:46:54.000Z",
"validThrough": "2026-07-18T10:46:54.000Z",
"employmentType": "CONTRACTOR",
"companyName": "Virtusa",
"companyUrl": "https://www.linkedin.com/company/virtusa",
"companyLogo": "https://media.licdn.com/dms/image/v2/D4D0BAQE1wyZ0gd_P_w/company-logo_200_200/B4DZmf03PuJMAQ-/0/1759323061531/virtusa_logo?e=2147483647&v=beta&t=QwNAnSOpzbZLVsw5_6QEvj37WFpjTZNvVBqZubYUud0",
"country": "DE",
"city": "München",
"latitude": 48.139126,
"longitude": 11.580219,
"industry": "Softwareentwicklung,Betrieb und Wartung von IT-Systemen",
"skills": "",
"monthsOfExperience": "",
"educationLevel": "bachelor degree",
"jobId": "4430444024",
"url": "https://de.linkedin.com/jobs/view/python-developer-at-virtusa-4430444024",
"location": "Munich, Bavaria, Germany"
}
]