Monster Jobs Scraper
Pricing
from $10.00 / 1,000 results
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
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
Monster Jobs Scraper — Selenium Edition (Apify Actor)
Scrapes Monster.com job listings.
Input
| Field | Type | Prefill | Description |
|---|---|---|---|
query (req.) | string | "python developer" | Job title or keyword. |
location | string | "Remote" | City, state, or 'Remote'. Blank = nationwide. |
maxResults | integer | 50 | 1–200. Capped at what's visible after scrolling. |
scrollSteps | integer | 3 | Page-height scrolls for lazy loads. |
headless | boolean | true | Run Chrome in Xvfb. |
proxyConfiguration | object | Apify Residential US | Required 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.