# Monitor Competitor Content Strategy & Keywords

**Use case:** 

Automate the extraction of new articles from a competitor's newsroom to analyze their content strategy and identify emerging keyword trends. Stay ahead by under

## Input

```json
{
  "websiteUrl": "https://www.theverge.com/",
  "maxArticles": 50,
  "keywordFilter": "AI OR artificial intelligence OR machine learning",
  "minWordCount": 150,
  "concurrency": 5,
  "extractKeywords": true,
  "extractSummary": false,
  "language": "en",
  "autoProxyFallback": true
}
```

## Output

```json
{
  "articleUrl": {
    "label": "URL",
    "format": "link"
  },
  "articleTitle": {
    "label": "Title"
  },
  "articleAuthors": {
    "label": "Authors",
    "format": "array"
  },
  "articlePublishDate": {
    "label": "Published",
    "format": "date"
  },
  "articleWordCount": {
    "label": "Words",
    "format": "number"
  },
  "articleTopImage": {
    "label": "Top image",
    "format": "image"
  },
  "articleLanguage": {
    "label": "Language"
  },
  "articleKeywords": {
    "label": "Keywords",
    "format": "array"
  },
  "articleSummary": {
    "label": "Summary"
  },
  "sourceDomain": {
    "label": "Source"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [News Source Crawler](https://apify.com/crawlerbros/news-source-crawler) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/news-source-crawler) to learn more, explore other use cases, and run it yourself.