# Find fresh LinkedIn hiring posts

**Use case:** 

Find recent LinkedIn posts that look like job openings or hiring announcements. Filter by keyword, country, author type, and freshness.

## Input

```json
{
  "query": "engineer",
  "excludeWords": "course webinar",
  "country": "us",
  "hashtags": [
    "hiring",
    "ai"
  ],
  "contentType": "POST",
  "hasComments": "",
  "isHiring": "true",
  "hasLink": "",
  "postedWithinHours": 300,
  "authorType": "any",
  "sortBy": "newest",
  "limit": 10,
  "offset": 0
}
```

## Output

```json
{
  "postKey": {
    "label": "Post Key",
    "format": "text"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "hashtags": {
    "label": "Hashtags",
    "format": "text"
  },
  "contentType": {
    "label": "Content Type",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "authorUrl": {
    "label": "Author URL",
    "format": "link"
  },
  "authorType": {
    "label": "Author Type",
    "format": "text"
  },
  "createdAt": {
    "label": "Posted At",
    "format": "text"
  },
  "geo": {
    "label": "Geo",
    "format": "text"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "commentsCount": {
    "label": "Comments",
    "format": "number"
  },
  "hasLink": {
    "label": "Has Link?",
    "format": "boolean"
  },
  "isHiring": {
    "label": "Hiring?",
    "format": "boolean"
  },
  "likesPerHour": {
    "label": "Likes / Hour",
    "format": "number"
  },
  "commentsPerHour": {
    "label": "Comments / Hour",
    "format": "number"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "link"
  },
  "comments": {
    "label": "Parsed Comments",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [LinkedIn Posts Search API](https://apify.com/sandhive/linkedin-posts-parser) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sandhive/linkedin-posts-parser) to learn more, explore other use cases, and run it yourself.