# Monster Jobs Scraper | Search, Details, Emails

**Use case:** 

Extract Monster job listings for recruiting, labor-market and hiring analytics. Search by filters or URLs; export clean JSON, CSV, Excel and API-ready fields.

## Input

```json
{
  "mode": "search",
  "query": "software engineer",
  "location": "New York, NY",
  "radius": 30,
  "workplace": "all",
  "datePosted": "all",
  "employmentType": "all",
  "sortBy": "relevance",
  "startUrls": [
    "https://www.monster.com/jobs/search?q=software+engineer&where=New+York%2C+NY&page=1"
  ],
  "enrichEmails": true,
  "maxItems": 20,
  "maxPages": 0,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "jobId": {
    "label": "Job ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "datePosted": {
    "label": "Date posted",
    "format": "date"
  },
  "dateRecency": {
    "label": "Recency",
    "format": "text"
  },
  "employmentTypesText": {
    "label": "Employment types",
    "format": "text"
  },
  "salaryMin": {
    "label": "Salary min",
    "format": "number"
  },
  "salaryMax": {
    "label": "Salary max",
    "format": "number"
  },
  "salaryCurrency": {
    "label": "Currency",
    "format": "text"
  },
  "salaryUnit": {
    "label": "Salary unit",
    "format": "text"
  },
  "remote": {
    "label": "Remote",
    "format": "boolean"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "industry": {
    "label": "Industry",
    "format": "text"
  },
  "applyUrl": {
    "label": "Apply",
    "format": "link"
  },
  "jobUrl": {
    "label": "Job URL",
    "format": "link"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "contactEmail": {
    "label": "Email",
    "format": "text"
  },
  "descriptionText": {
    "label": "Description",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Monster Jobs Scraper | Search, Details, Emails](https://apify.com/abotapi/monster-com) with a specific input configuration. Visit the [Actor detail page](https://apify.com/abotapi/monster-com) to learn more, explore other use cases, and run it yourself.