# Indeed Job Search Scraper

**Use case:** 

Scrape Indeed jobs by title, keyword, location, country, job type, date posted, salary, company, and job URL.

## Input

```json
{
  "query": "software engineer",
  "location": "New York, NY",
  "country": "US",
  "maxItems": 50,
  "jobType": "",
  "datePosted": "",
  "includeDescription": true,
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "title": {
    "label": "Job Title",
    "format": "text"
  },
  "company": {
    "label": "Company",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "salary": {
    "label": "Salary",
    "format": "text"
  },
  "jobType": {
    "label": "Job Type",
    "format": "text"
  },
  "isRemote": {
    "label": "Remote",
    "format": "boolean"
  },
  "datePosted": {
    "label": "Posted",
    "format": "text"
  },
  "employerSize": {
    "label": "Company Size",
    "format": "text"
  },
  "employerIndustry": {
    "label": "Industry",
    "format": "text"
  },
  "jobUrl": {
    "label": "Job URL",
    "format": "link"
  }
}
```

## About this Actor

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