# Scrape software engineer jobs from Indeed

**Use case:** 

Filter a company's postings to engineering titles: role, location, salary, posted date, URL. Export-ready CSV/JSON.

## Input

```json
{
  "companies": [
    "Microsoft"
  ],
  "maxJobsPerCompany": 20,
  "monitorMode": false,
  "companyMatch": "contains",
  "keyword": "engineer",
  "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.