# Collect LinkedIn Jobs from a URL List

**Use case:** 

Paste up to 1000 LinkedIn job URLs and get one clean row each: title, company, location, salary, seniority, and apply link.

## Input

```json
{
  "keyword": "python developer",
  "location": "New York",
  "remote": false,
  "jobUrls": [
    "https://www.linkedin.com/jobs/view/4286961888"
  ],
  "maxJobs": 25
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "companyName": {
    "label": "Company",
    "format": "string"
  },
  "salary": {
    "label": "Salary",
    "format": "string"
  },
  "seniorityLevel": {
    "label": "Seniority Level",
    "format": "string"
  },
  "employmentType": {
    "label": "Employment Type",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "numApplicants": {
    "label": "Applicants",
    "format": "integer"
  },
  "postedDate": {
    "label": "Posted Date",
    "format": "string"
  },
  "applyUrl": {
    "label": "Apply URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [LinkedIn Jobs API | Search Job Listings & Salaries](https://apify.com/johnvc/linkedin-jobs-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/linkedin-jobs-api) to learn more, explore other use cases, and run it yourself.