# Indeed Remote Jobs Scraper

**Use case:** 

Extract remote Indeed job listings with filters for job type, posting date, descriptions, company details, and apply URLs.

## Input

```json
{
  "query": "data analyst",
  "location": "remote",
  "country": "US",
  "maxItems": 100,
  "jobType": "fulltime",
  "datePosted": "7",
  "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.