# Compare Apple, Microsoft and Google stock fundamentals

**Use case:** 

Collect current quotes and company fundamentals for AAPL, MSFT and GOOGL.

## Input

```json
{
  "tickers": "AAPL, MSFT, GOOGL",
  "dataTypes": [
    "quote",
    "info"
  ],
  "historyPeriod": "1mo",
  "historyInterval": "1d"
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "quote": {
    "label": "Quote",
    "format": "object"
  },
  "info": {
    "label": "Company and fundamentals",
    "format": "object"
  },
  "history": {
    "label": "Price history",
    "format": "array"
  },
  "financials": {
    "label": "Financial statements",
    "format": "object"
  },
  "holders": {
    "label": "Holders",
    "format": "object"
  },
  "recommendations": {
    "label": "Recommendations",
    "format": "array"
  },
  "earnings": {
    "label": "Earnings",
    "format": "object"
  },
  "dividends": {
    "label": "Dividends",
    "format": "array"
  },
  "splits": {
    "label": "Splits",
    "format": "array"
  },
  "news": {
    "label": "News",
    "format": "array"
  },
  "scraped_at": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Yahoo Finance Scraper - Stocks, Fundamentals & News](https://apify.com/benthepythondev/yahoo-finance-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/benthepythondev/yahoo-finance-scraper) to learn more, explore other use cases, and run it yourself.