# Find Top Marketing Articles on LinkedIn (Past 30 Days)

**Use case:** 

Scrape the most popular articles published within the last month related to marketing, capturing key insights and author details. This provides marketers with c

## Input

```json
{
  "maxPosts": 80,
  "category": "marketing",
  "dateRange": "30d",
  "language": "en",
  "mediaTypeFilter": "article",
  "minReactions": 100,
  "cookie": "***"
}
```

## Output

```json
{
  "authorName": {
    "label": "Author",
    "format": "text"
  },
  "postedAt": {
    "label": "Posted At",
    "format": "datetime"
  },
  "content": {
    "label": "Content",
    "format": "text"
  },
  "mediaType": {
    "label": "Media Type",
    "format": "text"
  },
  "reactionsCount": {
    "label": "Reactions",
    "format": "number"
  },
  "commentsCount": {
    "label": "Comments",
    "format": "number"
  },
  "repostsCount": {
    "label": "Reposts",
    "format": "number"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [LinkedIn Top Content Scraper](https://apify.com/crawlerbros/linkedin-top-content-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/linkedin-top-content-scraper) to learn more, explore other use cases, and run it yourself.