# Monitor new Indeed job postings by company

**Use case:** 

Diff each run vs the prior to emit NEW-posting signal rows per company. Pair with an Apify Schedule for fresh hiring alerts.

## Input

```json
{
  "companies": [
    "Stripe",
    "Datadog"
  ],
  "maxJobsPerCompany": 50,
  "monitorMode": true,
  "companyMatch": "contains",
  "remoteOnly": false,
  "newWithinDays": 0,
  "fetchDescriptions": false,
  "detectClosed": true,
  "maxCloseChecksPerRun": 25,
  "alertOnNewPosting": true,
  "alertOnClosedPosting": false,
  "requestDelaySecs": 2,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "diagnose": false
}
```

## Output

```json
{
  "signal": {
    "label": "Signal",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "title": {
    "label": "Role",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "salary_text": {
    "label": "Salary",
    "format": "string"
  },
  "posted_relative": {
    "label": "Posted",
    "format": "string"
  },
  "remote": {
    "label": "Remote",
    "format": "boolean"
  },
  "url": {
    "label": "Link",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Indeed Company Jobs Monitor — Hiring Signals & Alerts](https://apify.com/scrapersdelight/indeed-company-hiring-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/indeed-company-hiring-monitor) to learn more, explore other use cases, and run it yourself.