# Extract Tech News for Sentiment Analysis

**Use case:** 

Gather recent articles from a leading tech publication to power market sentiment analysis for investment decisions. Understand public perception of new technolo

## Input

```json
{
  "websiteUrl": "https://techcrunch.com/",
  "maxArticles": 100,
  "keywordFilter": "AI AND startup",
  "minWordCount": 200,
  "concurrency": 5,
  "extractKeywords": true,
  "extractSummary": true,
  "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.