# Seeking Alpha AAPL analysis scraper example

**Use case:** 

Use an Apple Seeking Alpha symbol URL to extract recent analysis headlines, authors, dates, comments, and quote context.

## Input

```json
{
  "tickers": [
    "AAPL",
    "MSFT"
  ],
  "startUrls": [
    {
      "url": "https://seekingalpha.com/symbol/AAPL/analysis"
    }
  ],
  "includeTypes": [
    "analysis"
  ],
  "maxItems": 10
}
```

## 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.