# ETF Data Scraper - Quotes, Holdings & Fundamentals

**Use case:** 

Scrape ETF quotes, fundamentals, and metadata for any ETF (SPY, QQQ, VOO and more) from Yahoo Finance. No API key, pay per result.

## Input

```json
{
  "symbols": [
    "SPY",
    "QQQ",
    "VOO"
  ],
  "dataTypes": [
    "quote",
    "fundamentals"
  ],
  "interval": "1d",
  "range": "1mo",
  "newsCount": 10,
  "screenerCount": 25
}
```

## Output

```json
{
  "dataType": {
    "label": "Type",
    "format": "text"
  },
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "changePercent": {
    "label": "Change %",
    "format": "number"
  },
  "currency": {
    "label": "Cur",
    "format": "text"
  },
  "marketCap": {
    "label": "Market cap",
    "format": "number"
  },
  "peRatio": {
    "label": "P/E",
    "format": "number"
  },
  "recommendation": {
    "label": "Rating",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "close": {
    "label": "Close",
    "format": "number"
  },
  "title": {
    "label": "News",
    "format": "text"
  },
  "publisher": {
    "label": "Publisher",
    "format": "text"
  }
}
```

## About this Actor

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