# Scrape Remote Jobs from Indeed (with Salary)

**Use case:** 

Pull remote-only Indeed listings with salary, full descriptions and free company profiles. Filter by role and country. Export to JSON or CSV.

## Input

```json
{
  "query": "marketing manager",
  "location": "United States",
  "country": "US",
  "maxItems": 100,
  "sort": "relevance",
  "scrapeCompany": true,
  "radius": 25,
  "datePosted": "",
  "jobType": [],
  "remote": "remote",
  "experienceLevel": "",
  "startUrls": [],
  "jobKeys": []
}
```

## Output

```json
{
  "title": {
    "label": "Job title",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "companyRating": {
    "label": "Rating",
    "format": "number"
  },
  "companyReviewCount": {
    "label": "Reviews",
    "format": "integer"
  },
  "occupations": {
    "label": "Category",
    "format": "array"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "salary": {
    "label": "Salary",
    "format": "string"
  },
  "jobType": {
    "label": "Type",
    "format": "array"
  },
  "remote": {
    "label": "Remote",
    "format": "string"
  },
  "datePosted": {
    "label": "Posted",
    "format": "string"
  },
  "easyApply": {
    "label": "Easy apply",
    "format": "boolean"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Indeed Jobs Scraper 💼 Salaries, Filters & Company Data](https://apify.com/factden/indeed-jobs-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/factden/indeed-jobs-scraper) to learn more, explore other use cases, and run it yourself.