# LinkedIn Jobs with Company Data API

**Use case:** 

Scrape LinkedIn job listings and get each employer's industry, headcount, headquarters, and website enriched in the same run through a simple API call.

## Input

```json
{
  "query": "Software Engineer",
  "location": "United States",
  "timePostedRange": "86400",
  "jobsToFetch": 50,
  "enrichCompanyDetails": true,
  "contract": false,
  "fullTime": true,
  "partTime": true,
  "temporary": false,
  "volunteer": false,
  "internship": false,
  "internshipLevel": false,
  "entryLevel": true,
  "associate": true,
  "midSeniorLevel": true,
  "director": false,
  "executive": false,
  "onSite": true,
  "remote": true,
  "hybrid": true
}
```

## Output

```json
{
  "companyLogo": {
    "label": "Company Logo",
    "format": "image"
  },
  "jobTitle": {
    "label": "Job Title",
    "format": "text"
  },
  "companyName": {
    "label": "Company Name",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "seniorityLevel": {
    "label": "Seniority Level",
    "format": "text"
  },
  "employmentType": {
    "label": "Employment Type",
    "format": "text"
  },
  "salary": {
    "label": "Salary",
    "format": "text"
  },
  "postedDate": {
    "label": "Posted Date",
    "format": "text"
  },
  "postedTime": {
    "label": "Posted Time",
    "format": "text"
  },
  "jobUrl": {
    "label": "Job URL",
    "format": "link"
  },
  "applyUrl": {
    "label": "Apply URL",
    "format": "link"
  },
  "applicationType": {
    "label": "Application Type",
    "format": "text"
  },
  "skills": {
    "label": "Skills",
    "format": "array"
  },
  "industry": {
    "label": "Industry",
    "format": "text"
  },
  "jobDescription": {
    "label": "Job Description",
    "format": "text"
  },
  "validThrough": {
    "label": "Valid Through",
    "format": "text"
  },
  "sourceSearchUrl": {
    "label": "Source Search URL",
    "format": "link"
  },
  "companyUrl": {
    "label": "Company URL",
    "format": "link"
  },
  "companyWebsite": {
    "label": "Company Website",
    "format": "link"
  },
  "companyIndustry": {
    "label": "Company Industry",
    "format": "text"
  },
  "companyType": {
    "label": "Company Type",
    "format": "text"
  },
  "companyEmployeeCount": {
    "label": "Employee Count",
    "format": "text"
  },
  "companyHeadquarters": {
    "label": "Headquarters",
    "format": "text"
  },
  "companyLocations": {
    "label": "Company Locations",
    "format": "array"
  },
  "companySpecialities": {
    "label": "Company Specialities",
    "format": "text"
  },
  "companyDescription": {
    "label": "Company Description",
    "format": "text"
  },
  "companySlogan": {
    "label": "Company Slogan",
    "format": "text"
  }
}
```

## About this Actor

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