# S&P 500 Top Stocks Data Extractor

**Use case:** 

Retrieve full stock information, real-time prices, and historical OHLCV data for top S&P 500 stocks. Get insights on AAPL, MSFT, and more.

## Input

```json
{
  "tickers": [
    "AAPL",
    "MSFT",
    "NVDA",
    "AMZN",
    "GOOGL",
    "META",
    "BRK-B",
    "LLY",
    "JPM",
    "XOM"
  ],
  "start_date": "2024-01-01",
  "end_date": "2024-12-31"
}
```

## Output

```json
{
  "ticker": {
    "label": "Ticker",
    "format": "text"
  },
  "shortName": {
    "label": "Name",
    "format": "text"
  },
  "currentPrice": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "exchange": {
    "label": "Exchange",
    "format": "text"
  },
  "marketCap": {
    "label": "Market Cap",
    "format": "number"
  },
  "sector": {
    "label": "Sector",
    "format": "text"
  },
  "industry": {
    "label": "Industry",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

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