# Indeed Job Scraper

**Use case:** 

Scrape Indeed job listings for any role and country: title, company, location, salary, posted date and company rating, country-verified. JSON or CSV.

## Input

```json
{
  "queries": [
    {
      "position": "software engineer",
      "location": "London"
    },
    {
      "position": "software engineer",
      "location": "Manchester"
    }
  ],
  "country": "UK",
  "postedWithinDays": 14,
  "salaryTypes": [],
  "maxResultsPerQuery": 30,
  "maxRuntimeSeconds": 1800,
  "outputTier": "commodity",
  "includeJobs": true,
  "includeCompanyIntelligence": true,
  "includeSignals": true,
  "extractDescriptions": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "groups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "recordType": {
    "label": "Record Type",
    "format": "string"
  },
  "positionName": {
    "label": "Position",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "countryVerified": {
    "label": "Country Verified",
    "format": "boolean"
  },
  "salary": {
    "label": "Salary",
    "format": "object"
  },
  "jobType": {
    "label": "Job Type",
    "format": "array"
  },
  "postedAt": {
    "label": "Posted At",
    "format": "string"
  },
  "postedRelative": {
    "label": "Posted Relative",
    "format": "string"
  },
  "daysOpen": {
    "label": "Days Open",
    "format": "integer"
  },
  "repostDetected": {
    "label": "Repost Detected",
    "format": "boolean"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "externalApplyLink": {
    "label": "External Apply Link",
    "format": "string"
  },
  "companyRating": {
    "label": "Company Rating",
    "format": "number"
  },
  "companyReviewCount": {
    "label": "Company Review Count",
    "format": "integer"
  },
  "jobId": {
    "label": "Job ID",
    "format": "string"
  },
  "trustLayer": {
    "label": "TrustLayer",
    "format": "object"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "string"
  }
}
```

## About this Actor

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