# LinkedIn jobs — example keyword search

**Use case:** 

Searches LinkedIn job listings without login and returns a few clean records — title, company, location and apply URL.

## Input

```json
{
  "keyword": "engineer",
  "location": "Germany",
  "remote": false,
  "timeFilter": "r86400",
  "maxItems": 5,
  "includeDescription": true,
  "includeCompanyInfo": false,
  "postedSince": 0,
  "titleExclude": [],
  "companyExclude": [],
  "onlyNewSinceLastRun": false,
  "skipJobId": [],
  "cacheTtlSeconds": 1800
}
```

## Output

```json
{
  "id": {
    "label": "Job ID",
    "format": "string"
  },
  "title": {
    "label": "Job title",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "postedAt": {
    "label": "Posted date",
    "format": "string"
  },
  "employmentType": {
    "label": "Employment type",
    "format": "string"
  },
  "seniorityLevel": {
    "label": "Seniority level",
    "format": "string"
  },
  "jobFunction": {
    "label": "Job function",
    "format": "string"
  },
  "industries": {
    "label": "Industries",
    "format": "string"
  },
  "applicantsCount": {
    "label": "Applicants",
    "format": "string"
  },
  "url": {
    "label": "Posting URL",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "snippet": {
    "label": "Snippet",
    "format": "string"
  },
  "isNew": {
    "label": "Is new",
    "format": "boolean"
  },
  "warnings": {
    "label": "Warnings",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [LinkedIn Jobs Scraper — No Login, Delta Mode | Pay Per Result](https://apify.com/nomad-agent/linkedin-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/nomad-agent/linkedin-scraper) to learn more, explore other use cases, and run it yourself.