# Scrape LinkedIn Job Listings by Keyword & Location

**Use case:** 

Scrape LinkedIn job postings by keyword and location: title, company, salary, posted date and URL as clean JSON or CSV. No API key, no login, no cookies.

## Input

```json
{
  "keywords": "python developer",
  "location": "United States",
  "keywordsList": [
    "python developer",
    "data engineer",
    "ML engineer"
  ],
  "locationsList": [
    "United States",
    "United Kingdom",
    "Remote"
  ],
  "companyFilter": [
    "google",
    "meta",
    "stripe"
  ],
  "datePosted": "",
  "jobType": "",
  "experienceLevel": "",
  "workType": "",
  "salary": "",
  "fetchJobDetails": false,
  "fetchCompanyDetails": false,
  "titleOnly": false,
  "maxResults": 10,
  "maxResultsPerSearch": 25,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "salary": {
    "label": "Salary",
    "format": "string"
  },
  "postedDate": {
    "label": "Posted",
    "format": "string"
  },
  "seniorityLevel": {
    "label": "Seniority",
    "format": "string"
  },
  "employmentType": {
    "label": "Type",
    "format": "string"
  },
  "jobFunction": {
    "label": "Function",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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