# Scrape jobs from LinkedIn, Indeed and Glassdoor at once

**Use case:** 

Scrape jobs from LinkedIn, Indeed, Glassdoor & Google Jobs in one run - salary, location, remote flag, company. Export CSV/JSON/Excel.

## Input

```json
{
  "searchTerm": "software engineer",
  "searchTerms": [],
  "location": "New York, NY",
  "sites": [
    "linkedin",
    "indeed",
    "glassdoor",
    "google",
    "zip_recruiter"
  ],
  "maxResults": 20,
  "isRemote": false,
  "jobType": "",
  "countryIndeed": "usa",
  "easyApply": false,
  "linkedinFetchDescription": false,
  "linkedinCompanyIds": [],
  "descriptionFormat": "markdown",
  "enforceAnnualSalary": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "company": {
    "label": "Company",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "site": {
    "label": "Board",
    "format": "text"
  },
  "is_remote": {
    "label": "Remote",
    "format": "boolean"
  },
  "job_type": {
    "label": "Type",
    "format": "text"
  },
  "salary_min": {
    "label": "Salary min",
    "format": "number"
  },
  "salary_max": {
    "label": "Salary max",
    "format": "number"
  },
  "salary_interval": {
    "label": "Per",
    "format": "text"
  },
  "salary_currency": {
    "label": "Currency",
    "format": "text"
  },
  "date_posted": {
    "label": "Posted",
    "format": "text"
  },
  "company_industry": {
    "label": "Industry",
    "format": "text"
  },
  "emails": {
    "label": "Emails",
    "format": "text"
  },
  "job_url": {
    "label": "Job URL",
    "format": "link"
  },
  "search_term": {
    "label": "Search term",
    "format": "text"
  },
  "scraped_at": {
    "label": "Scraped at",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Job Scraper - LinkedIn, Indeed, Glassdoor, Google Jobs](https://apify.com/flash_scraper/multi-jobboard-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/flash_scraper/multi-jobboard-scraper) to learn more, explore other use cases, and run it yourself.