# Collect cloud engineer jobs from a Monster search URL

**Use case:** 

Collect Monster.com cloud engineer listings from a public search URL with company, location, salary, posted date, description, and job URL.

## Input

```json
{
  "searchQuery": "software engineer",
  "location": "New York, NY",
  "maxResults": 20,
  "enrichDetails": true,
  "startUrls": [
    {
      "url": "https://www.monster.com/jobs/search?q=cloud+engineer&where=United-States"
    }
  ],
  "maxConcurrency": 8,
  "debugDumpHtml": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Job title",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "salaryText": {
    "label": "Salary text",
    "format": "string"
  },
  "employmentType": {
    "label": "Employment type",
    "format": "string"
  },
  "postedAt": {
    "label": "Posted at",
    "format": "string"
  },
  "jobUrl": {
    "label": "Job URL",
    "format": "string"
  }
}
```

## About this Actor

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