# Monster Jobs Scraper | Search, Details, Emails (`abotapi/monster-com`) Actor

Extract monster.com job listings with full descriptions, salary, company, location, geo, application, classification, compliance, and public email fields. Supports search URLs and direct job URLs.

- **URL**: https://apify.com/abotapi/monster-com.md
- **Developed by:** [AbotAPI](https://apify.com/abotapi) (community)
- **Categories:** Jobs, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.50 / 1,000 job records

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Monster Jobs Scraper

Extract structured Monster job listings for recruiting intelligence, labor-market research, job-board feeds, and hiring analytics. The actor supports structured search inputs plus direct Monster search and job URLs. It preserves the full upstream job object while adding flat fields that export cleanly to JSON, CSV, Excel, and API clients.

### Why This Scraper?

- Search by keyword and location
- Filter by radius, workplace, date, employment type, and company
- Sort by relevance or newest first
- Accept multiple Monster search and direct job URLs
- Return full HTML descriptions, salary, employer, geo, application, classification, branding, and compliance data
- Preserve the complete raw job object for future fields
- Produce explicit flat CSV columns, including job ID, title, company, location, salary, dates, URLs, and coordinates
- Extract public email addresses found in returned job content

### Data You Get

| Field | Example |
|---|---|
| `jobId` | `00000000-0000-0000-0000-000000000000` |
| `title` | `Sample Software Engineer` |
| `companyName` | `Sample Company` |
| `location` | `New York, NY, US` |
| `datePosted` | `2026-01-01T00:00:00.000Z` |
| `employmentTypesText` | `FULL_TIME` |
| `salaryMin` | `100000` |
| `salaryMax` | `140000` |
| `salaryCurrency` | `USD` |
| `remote` | `true` |
| `applyUrl` | `https://www.monster.com/` |
| `latitude` | `40.7000` |
| `longitude` | `-74.0000` |
| `descriptionHtml` | Full returned HTML |
| `contactEmail` | `jobs@example.com` |
| `raw` | Complete source object |

### How to Use

Search:

```json
{
  "mode": "search",
  "query": "software engineer",
  "location": "New York, NY",
  "maxItems": 20
}
````

Remote jobs posted recently:

```json
{
  "mode": "search",
  "query": "data engineer",
  "location": "United States",
  "workplace": "remote",
  "datePosted": "week",
  "sortBy": "date",
  "maxItems": 50
}
```

URL mode:

```json
{
  "mode": "url",
  "startUrls": [
    "https://www.monster.com/jobs/search?q=developer&where=Boston%2C+MA&page=1"
  ],
  "maxItems": 20
}
```

### Input Parameters

| Parameter | Default | Description |
|---|---:|---|
| `mode` | `search` | Structured search or URL mode |
| `query` | `software engineer` | Search keyword |
| `location` | `New York, NY` | Search location |
| `radius` | `30` | Radius in miles |
| `workplace` | `all` | All workplaces or remote only |
| `datePosted` | `all` | Posting recency |
| `employmentType` | `all` | Employment type |
| `company` | empty | Employer name filter |
| `sortBy` | `relevance` | Relevance or newest first |
| `startUrls` | sample URL | Search and direct job URLs |
| `enrichEmails` | `true` | Extract public emails from returned content |
| `maxItems` | `20` | Maximum matching rows to save |
| `maxPages` | `0` | No page limit; Max items remains the cap |
| `maxConcurrency` | `2` | Maximum parallel pages |
| `minConcurrency` | `1` | Minimum parallel pages |
| `maxRequestRetries` | `6` | Fresh-connection retries |
| `proxy` | Residential | Connection configuration |

`maxItems` is a maximum, not a guaranteed result count. A run can return fewer records when fewer current jobs match the selected source, keyword, location, and filters.

### Output Example

> Sample shape, values are illustrative placeholders, not from a live job.

```json
{
  "jobId": "00000000-0000-0000-0000-000000000000",
  "title": "Sample Software Engineer",
  "companyName": "Sample Company",
  "location": "New York, NY, US",
  "datePosted": "2026-01-01T00:00:00.000Z",
  "employmentTypes": ["FULL_TIME"],
  "employmentTypesText": "FULL_TIME",
  "salaryMin": 100000,
  "salaryMax": 140000,
  "salaryCurrency": "USD",
  "remote": true,
  "applyUrl": "https://www.monster.com/",
  "jobUrl": "https://www.monster.com/",
  "contactEmail": "jobs@example.com",
  "descriptionText": "Sample job description.",
  "raw": {},
  "scrapedAt": "2026-01-01T00:00:00.000Z"
}
```

### Plan Requirement

Apify Residential proxy is strongly recommended. Datacenter and free-tier connections can have lower reliability. The actor automatically retries incomplete pages with fresh sessions.

CSV exports use the dataset `overview` view with explicit flat fields. This prevents nested-only records from producing blank CSV files.

# Actor input Schema

## `mode` (type: `string`):

Choose structured search mode or URL mode.

## `query` (type: `string`):

Job title, skill, or keyword.

## `location` (type: `string`):

City, state, ZIP code, or country.

## `radius` (type: `integer`):

Search radius around the selected location.

## `workplace` (type: `string`):

Return all workplaces or remote jobs only.

## `datePosted` (type: `string`):

Limit results by posting recency.

## `employmentType` (type: `string`):

Limit results to one employment type.

## `company` (type: `string`):

Optional case-insensitive employer filter.

## `sortBy` (type: `string`):

Sort results by relevance or newest posting date.

## `startUrls` (type: `array`):

Monster search result URLs or direct job-opening URLs.

## `enrichEmails` (type: `boolean`):

Extract email addresses present in the returned job description and employer metadata.

## `maxItems` (type: `integer`):

Maximum matching rows to save. Fewer may be returned when fewer live jobs match.

## `maxPages` (type: `integer`):

Leave 0 for no page limit; the run stops at Max items or when results end.

## `proxy` (type: `object`):

Apify Residential is recommended. Datacenter and free-tier connections have lower reliability.

## Actor input object example

```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"
    ]
  }
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "startUrls": [
        "https://www.monster.com/jobs/search?q=software+engineer&where=New+York%2C+NY&page=1"
    ],
    "proxy": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("abotapi/monster-com").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "startUrls": ["https://www.monster.com/jobs/search?q=software+engineer&where=New+York%2C+NY&page=1"],
    "proxy": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("abotapi/monster-com").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "startUrls": [
    "https://www.monster.com/jobs/search?q=software+engineer&where=New+York%2C+NY&page=1"
  ],
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call abotapi/monster-com --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=abotapi/monster-com",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Monster Jobs Scraper | Search, Details, Emails",
        "description": "Extract monster.com job listings with full descriptions, salary, company, location, geo, application, classification, compliance, and public email fields. Supports search URLs and direct job URLs.",
        "version": "1.0",
        "x-build-id": "km5gCQbxgxWytsvxA"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/abotapi~monster-com/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-abotapi-monster-com",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/abotapi~monster-com/runs": {
            "post": {
                "operationId": "runs-sync-abotapi-monster-com",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/abotapi~monster-com/run-sync": {
            "post": {
                "operationId": "run-sync-abotapi-monster-com",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "search",
                            "url"
                        ],
                        "type": "string",
                        "description": "Choose structured search mode or URL mode.",
                        "default": "search"
                    },
                    "query": {
                        "title": "Keywords",
                        "type": "string",
                        "description": "Job title, skill, or keyword.",
                        "default": "software engineer"
                    },
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "City, state, ZIP code, or country.",
                        "default": "New York, NY"
                    },
                    "radius": {
                        "title": "Radius in miles",
                        "minimum": 1,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Search radius around the selected location.",
                        "default": 30
                    },
                    "workplace": {
                        "title": "Workplace",
                        "enum": [
                            "all",
                            "remote"
                        ],
                        "type": "string",
                        "description": "Return all workplaces or remote jobs only.",
                        "default": "all"
                    },
                    "datePosted": {
                        "title": "Date posted",
                        "enum": [
                            "all",
                            "today",
                            "2days",
                            "week",
                            "2weeks",
                            "month"
                        ],
                        "type": "string",
                        "description": "Limit results by posting recency.",
                        "default": "all"
                    },
                    "employmentType": {
                        "title": "Employment type",
                        "enum": [
                            "all",
                            "FULL_TIME",
                            "PART_TIME",
                            "CONTRACTOR",
                            "TEMPORARY",
                            "INTERN"
                        ],
                        "type": "string",
                        "description": "Limit results to one employment type.",
                        "default": "all"
                    },
                    "company": {
                        "title": "Company contains",
                        "type": "string",
                        "description": "Optional case-insensitive employer filter."
                    },
                    "sortBy": {
                        "title": "Sort",
                        "enum": [
                            "relevance",
                            "date"
                        ],
                        "type": "string",
                        "description": "Sort results by relevance or newest posting date.",
                        "default": "relevance"
                    },
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Monster search result URLs or direct job-opening URLs.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "enrichEmails": {
                        "title": "Extract public emails",
                        "type": "boolean",
                        "description": "Extract email addresses present in the returned job description and employer metadata.",
                        "default": true
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum matching rows to save. Fewer may be returned when fewer live jobs match.",
                        "default": 20
                    },
                    "maxPages": {
                        "title": "Max pages",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Leave 0 for no page limit; the run stops at Max items or when results end.",
                        "default": 0
                    },
                    "proxy": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Apify Residential is recommended. Datacenter and free-tier connections have lower reliability.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ]
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
