# Seeking Alpha AI stock news scraper example

**Use case:** 

Collect recent Seeking Alpha analysis and news metadata for NVDA, AMD, and MSFT in one repeatable market-monitoring task.

## Input

```json
{
  "tickers": [
    "NVDA",
    "AMD",
    "MSFT"
  ],
  "startUrls": [
    {
      "url": "https://seekingalpha.com/symbol/NVDA"
    }
  ],
  "includeTypes": [
    "analysis",
    "news"
  ],
  "maxItems": 30
}
```

## Output

```json
{
  "ticker": {
    "label": "Ticker",
    "format": "string"
  },
  "contentType": {
    "label": "Type",
    "format": "string"
  },
  "headline": {
    "label": "Headline",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "publishedAt": {
    "label": "Published",
    "format": "string"
  },
  "commentCount": {
    "label": "Comments",
    "format": "integer"
  },
  "articleUrl": {
    "label": "Article",
    "format": "string"
  },
  "lastPrice": {
    "label": "Last price",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "marketState": {
    "label": "Market state",
    "format": "string"
  },
  "companyName": {
    "label": "Company",
    "format": "string"
  },
  "sector": {
    "label": "Sector",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Seeking Alpha Analysis Feed Scraper](https://apify.com/automation-lab/seeking-alpha-analysis-feed-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/seeking-alpha-analysis-feed-scraper) to learn more, explore other use cases, and run it yourself.