Monster Jobs Scraper avatar

Monster Jobs Scraper

Pricing

from $10.00 / 1,000 results

Go to Apify Store
Monster Jobs Scraper

Monster Jobs Scraper

Monster Jobs Scraper — Selenium Edition is an Apify Actor that scrapes job listings from Monster.com using Selenium. It supports keyword and location-based searches, lazy-load scrolling, proxy support, and exports structured job data including title, company, location, posting date, and job URL.

Pricing

from $10.00 / 1,000 results

Rating

0.0

(0)

Developer

Jamshaid Arif

Jamshaid Arif

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Monster Jobs Scraper — Selenium Edition (Apify Actor)

Scrapes Monster.com job listings.

Input

FieldTypePrefillDescription
query (req.)string"python developer"Job title or keyword.
locationstring"Remote"City, state, or 'Remote'. Blank = nationwide.
maxResultsinteger501–200. Capped at what's visible after scrolling.
scrollStepsinteger3Page-height scrolls for lazy loads.
headlessbooleantrueRun Chrome in Xvfb.
proxyConfigurationobjectApify Residential USRequired for reliable runs.

Example:

{
"query": "machine learning engineer",
"location": "San Francisco, CA",
"maxResults": 100,
"scrollSteps": 5
}

Output

Each record matches the structure MonsterBrowser in browser_scraper.py returns:

{
"title": "Senior Python Developer",
"company": "Acme Corp",
"location": "Remote",
"posted": "Posted 2 days ago",
"url": "https://www.monster.com/job-openings/..."
}

Fields are raw strings as Monster renders them — parse downstream if you need normalized values (e.g. posted → datetime).

A SUMMARY blob lands on the KV store with the run URL, parameters, result count, and total elapsed time.