# Daily Adjusted Alpha Vantage Public Market Data

**Use case:** 

Extract Alpha Vantage Public Market Data data filtered by Daily Adjusted. Export structured results ready for analysis, lead generation, or research.

## Input

```json
{
  "function": "TIME_SERIES_DAILY_ADJUSTED",
  "symbol": "IBM",
  "maxItems": 10,
  "outputsize": "compact"
}
```

## Output

```json
{
  "function": {
    "label": "🔧 Function",
    "format": "text"
  },
  "symbol": {
    "label": "📈 Symbol",
    "format": "text"
  },
  "date": {
    "label": "📅 Date",
    "format": "date"
  },
  "open": {
    "label": "🔓 Open",
    "format": "text"
  },
  "high": {
    "label": "⬆️ High",
    "format": "text"
  },
  "low": {
    "label": "⬇️ Low",
    "format": "text"
  },
  "close": {
    "label": "🔒 Close",
    "format": "text"
  },
  "volume": {
    "label": "📊 Volume",
    "format": "text"
  },
  "scrapedAt": {
    "label": "🕒 Scraped At",
    "format": "date"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Alpha Vantage Public Market Data Scraper](https://apify.com/parseforge/alpha-vantage-public-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/alpha-vantage-public-scraper) to learn more, explore other use cases, and run it yourself.