# Intraday Stock Data Scraper — Minute Prices

**Use case:** 

Get intraday stock data for any ticker: minute-by-minute prices, volume and pre/post-market moves. Free preview, then low cost per 1,000 rows.

## Input

```json
{
  "mode": "history",
  "symbols": [
    "AAPL",
    "TSLA",
    "NVDA"
  ],
  "range": "5d",
  "interval": "1m",
  "maxItems": 1000,
  "adjustedClose": true,
  "includePrePost": true
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "mode": {
    "label": "Mode",
    "format": "text"
  },
  "regular_price": {
    "label": "Price",
    "format": "number"
  },
  "market_cap": {
    "label": "Market Cap",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "day_high": {
    "label": "Day High",
    "format": "number"
  },
  "day_low": {
    "label": "Day Low",
    "format": "number"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "close": {
    "label": "Close",
    "format": "number"
  },
  "timestamp": {
    "label": "Timestamp",
    "format": "text"
  },
  "parse_confidence": {
    "label": "Confidence",
    "format": "number"
  }
}
```

## About this Actor

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