# LinkedIn New Jobs Scraper

**Use case:** 

Applying early is most of the game on LinkedIn. This example keeps only roles posted in the last day and returns the title, company, location, seniority and apply link. Run it on a schedule to power a daily alert, or to give your recruiters a shortlist before the listing collects hundreds of applicants.

## Input

```json
{
  "titles": [
    "Software Engineer"
  ],
  "locations": [
    "Germany"
  ],
  "maxItems": 50,
  "publishedAt": "r86400",
  "contractType": "",
  "experienceLevel": "",
  "workType": "",
  "easyApply": false
}
```

## Output

```json
{
  "title": {
    "label": "Job Title",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "jobLevel": {
    "label": "Seniority",
    "format": "text"
  },
  "salaryMin": {
    "label": "Salary min",
    "format": "number"
  },
  "salaryMax": {
    "label": "Salary max",
    "format": "number"
  },
  "salaryCurrency": {
    "label": "Currency",
    "format": "text"
  },
  "salaryPeriod": {
    "label": "Per",
    "format": "text"
  },
  "jobType": {
    "label": "Type",
    "format": "text"
  },
  "datePosted": {
    "label": "Posted",
    "format": "text"
  },
  "jobUrl": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/silentflow/linkedin-jobs-scraper-ppr.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
