
Indeed Company Jobs Scraper
Under maintenance
Go to Store
This Actor is under maintenance.
This Actor may be unreliable while under maintenance. Would you like to try a similar Actor instead?
See alternative Actors
Indeed Company Jobs Scraper
louisdeconinck/indeed-company-jobs-scraper
Extract job listings from Indeed company pages effortlessly. This powerful scraper handles anti-bot measures and delivers structured data including job titles, locations, and URLs. Perfect for recruitment automation and job market analysis.
Developer
Maintained by Community
Categories
A web scraping actor built with Crawlee and Playwright to extract job listings from Indeed company pages.
Features
- Scrapes job listings including:
- Job title
- Location
- Job type (full-time, part-time etc)
- Job URL
- Built-in anti-bot detection measures
- Configurable proxy support
- Automatic retries and error handling
- Customizable user agent rotation
- Viewport and browser fingerprint randomization
Input Configuration
The actor accepts the following input parameters in the INPUT.json
file:
startUrls
: An array of URLs to start scraping from.
Example:
1{ 2 "startUrls": [ 3 "https://be.indeed.com/cmp/Wibra/jobs" 4 ] 5}
Output
The actor outputs the following data to the OUTPUT.json
file:
jobs
: An array of job listings.
Each job listing contains the following fields:
title
: The job title.location
: The job location.metadata
: The job type (full-time, part-time etc).link
: The job URL.
Example:
1{ 2 "jobs": [ 3 { 4 "title": "1e Winkelbediende Wilrijk", 5 "location": "Wilrijk", 6 "metadata": "Part-time", 7 "link": "https://be.indeed.com/rc/clk?jk=714984c9ce4e762a&tk=1iemk57v6ic3s800&directia=1&from=company" 8 } 9 ] 10}