# Walgreens Vitamin Product Data Extractor

**Use case:** 

Extract product listings for vitamins including prices, discounts, and availability from Walgreens. Ideal for market research and inventory tracking.

## Input

```json
{
  "keyword": "vitamin",
  "results_wanted": 200,
  "max_pages": 10,
  "sort": "relevance",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Product Name",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "salePrice": {
    "label": "Sale Price",
    "format": "text"
  },
  "regularPrice": {
    "label": "Regular Price",
    "format": "text"
  },
  "onSale": {
    "label": "On Sale",
    "format": "boolean"
  },
  "averageRating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "subCategory": {
    "label": "Subcategory",
    "format": "text"
  },
  "productType": {
    "label": "Type",
    "format": "text"
  },
  "size": {
    "label": "Size",
    "format": "text"
  },
  "upc": {
    "label": "UPC",
    "format": "text"
  },
  "gtin": {
    "label": "GTIN",
    "format": "text"
  },
  "storeInventoryStatus": {
    "label": "Stock",
    "format": "text"
  },
  "shippingEligible": {
    "label": "Shipping",
    "format": "boolean"
  },
  "isWalgreensBrand": {
    "label": "Walgreens Brand",
    "format": "boolean"
  },
  "webExclusive": {
    "label": "Channel",
    "format": "text"
  },
  "productUrl": {
    "label": "Product Link",
    "format": "link"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  }
}
```

## About this Actor

This example demonstrates how to use [Walgreens Product Scraper](https://apify.com/shahidirfan/walgreens-product-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/shahidirfan/walgreens-product-scraper) to learn more, explore other use cases, and run it yourself.