# Scrape recent US jobs on Monster.com

**Use case:** 

Pull recent job listings from Monster.com posted in the last 7 days. Structured US job data. Pay per result.

## Input

```json
{
  "searchQuery": "sales",
  "location": "New York",
  "daysOld": 7,
  "fetchDetails": false,
  "maxItems": 5
}
```

## Output

```json
{
  "id": {
    "label": "Job ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "company": {
    "label": "Company",
    "format": "text"
  },
  "employerSize": {
    "label": "Company Size",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "workTypes": {
    "label": "Type",
    "format": "text"
  },
  "salaryText": {
    "label": "Salary",
    "format": "text"
  },
  "isRemote": {
    "label": "Remote",
    "format": "boolean"
  },
  "publishDate": {
    "label": "Posted",
    "format": "text"
  },
  "isRepost": {
    "label": "Repost",
    "format": "boolean"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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