# 📈 Yahoo Finance Scraper — Quotes & Price History

**Use case:** 

No-code, cheap Yahoo Finance API. Scrape quotes for stocks, ETFs, crypto, forex & indices: price, day change, 52-week range, volume & OHLCV — cheapest per item.

## Input

```json
{
  "symbols": [
    "AAPL",
    "MSFT",
    "BTC-USD"
  ],
  "includeHistory": false,
  "interval": "1d",
  "range": "1mo",
  "maxConcurrency": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "exchange": {
    "label": "Exchange",
    "format": "text"
  },
  "instrumentType": {
    "label": "Instrument Type",
    "format": "text"
  },
  "marketState": {
    "label": "Market State",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "previousClose": {
    "label": "Previous Close",
    "format": "number"
  },
  "change": {
    "label": "Change",
    "format": "number"
  },
  "changePercent": {
    "label": "Change Percent",
    "format": "number"
  },
  "dayHigh": {
    "label": "Day High",
    "format": "number"
  },
  "dayLow": {
    "label": "Day Low",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "fiftyTwoWeekHigh": {
    "label": "Fifty Two Week High",
    "format": "number"
  },
  "fiftyTwoWeekLow": {
    "label": "Fifty Two Week Low",
    "format": "number"
  },
  "marketTime": {
    "label": "Market Time",
    "format": "date"
  },
  "timezone": {
    "label": "Timezone",
    "format": "text"
  },
  "found": {
    "label": "Found",
    "format": "boolean"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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