# Aggregate Industry News for Trend Analysis

**Use case:** 

Crawl leading industry news sites to collect articles on specific topics. This provides a real-time feed for identifying emerging trends, competitive announceme

## Input

```json
{
  "startUrls": [
    {
      "url": "https://techcrunch.com/"
    },
    {
      "url": "https://www.wired.com/"
    }
  ],
  "crawlerType": "playwright:chromium",
  "maxCrawlDepth": 3,
  "maxCrawlPages": 70,
  "maxConcurrency": 5,
  "includeUrlGlobs": [
    "https://techcrunch.com/*/202*",
    "https://www.wired.com/*/article/*"
  ],
  "excludeUrlGlobs": [],
  "outputFormat": "markdown"
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "depth": {
    "label": "Depth",
    "format": "number"
  },
  "httpStatusCode": {
    "label": "Status",
    "format": "number"
  }
}
```

## About this Actor

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