# Yahoo Finance Analyst Target Sample

**Use case:** 

Yahoo Finance Analyst Target Sample: export public Yahoo Finance quote metadata and historical OHLCV rows for watchlists, spreadsheets, dashboards, APIs, or...

## Input

```json
{
  "symbols": [
    "JNJ",
    "UNH"
  ],
  "range": "1mo",
  "interval": "1d",
  "includeRawTimestamps": true,
  "maxConcurrency": 3
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "string"
  },
  "exchangeName": {
    "label": "Exchange",
    "format": "string"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "regularMarketPrice": {
    "label": "Market price",
    "format": "number"
  },
  "previousClose": {
    "label": "Previous close",
    "format": "number"
  },
  "chartPreviousClose": {
    "label": "Chart previous close",
    "format": "number"
  },
  "timezone": {
    "label": "Timezone",
    "format": "string"
  },
  "range": {
    "label": "Range",
    "format": "string"
  },
  "interval": {
    "label": "Interval",
    "format": "string"
  },
  "timestamp": {
    "label": "Timestamp",
    "format": "integer"
  },
  "date": {
    "label": "Date",
    "format": "string"
  },
  "open": {
    "label": "Open",
    "format": "number"
  },
  "high": {
    "label": "High",
    "format": "number"
  },
  "low": {
    "label": "Low",
    "format": "number"
  },
  "close": {
    "label": "Close",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "integer"
  },
  "sourceUrl": {
    "label": "Yahoo Finance URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "format": "string"
  }
}
```

## About this Actor

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