# Monitor new LinkedIn jobs daily for a search

**Use case:** 

Get only newly posted LinkedIn jobs for your search each run: title, company, location, workplace type, posted date and apply URL. Incremental monitor.

## Input

```json
{
  "keywords": "product manager",
  "location": "United Kingdom",
  "datePosted": "past24h",
  "workplaceType": [],
  "jobType": [],
  "experienceLevel": [],
  "salaryBucket": "any",
  "sortBy": "date",
  "scrapeJobDetails": true,
  "scrapeCompanyDetails": false,
  "maxJobs": 100,
  "splitByLocation": false,
  "splitByDateWindow": false,
  "incrementalMode": true,
  "monitorKey": "pm-uk",
  "firstRunLookback": "pastWeek",
  "maxConcurrency": 12,
  "maxRequestsPerMinute": 240,
  "searchConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "debugDumpDetailHtml": false
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "workplaceType": {
    "label": "Workplace",
    "format": "text"
  },
  "postedAt": {
    "label": "Posted",
    "format": "date"
  },
  "applicantsCount": {
    "label": "Applicants",
    "format": "number"
  },
  "isReposted": {
    "label": "Repost",
    "format": "boolean"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "url": {
    "label": "Job URL",
    "format": "link"
  }
}
```

## About this Actor

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