# Daily S&P 500 & Tech Stock Price Data

**Use case:** 

Retrieve daily historical price data for key S&P 500 companies and major tech stocks to track market trends. This data is crucial for quantitative analysis, bac

## Input

```json
{
  "symbols": [
    "SPY",
    "AAPL",
    "MSFT",
    "GOOGL",
    "AMZN",
    "NVDA",
    "TSLA"
  ],
  "interval": "1d",
  "startDate": "2023-01-01",
  "endDate": "2024-06-01"
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "open": {
    "label": "Open",
    "format": "number"
  },
  "high": {
    "label": "High",
    "format": "number"
  },
  "low": {
    "label": "Low",
    "format": "number"
  },
  "close": {
    "label": "Close",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "dividends": {
    "label": "Dividends",
    "format": "number"
  },
  "stockSplits": {
    "label": "Stock Splits",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [US Stock Price Scraper](https://apify.com/crawlerbros/us-stock-price-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/us-stock-price-scraper) to learn more, explore other use cases, and run it yourself.