# AAPL Live Stock Quote from Yahoo Finance API

**Use case:** 

Real-time AAPL quote with current price, currency, daily change, and 52-week high/low in a single row. Re-run any time for a fresh Apple stock snapshot.

## Input

```json
{
  "mode": "quote",
  "query": "apple",
  "symbols": [
    "AAPL"
  ],
  "range": "1mo",
  "interval": "1d",
  "maxItems": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "changePct": {
    "label": "Change %",
    "format": "number"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "close": {
    "label": "Close",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  }
}
```

## About this Actor

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