# Walgreens Catalog Monitoring Scraper Workflow

**Use case:** 

Collect and deduplicate multiple Walgreens product categories for repeat assortment, promotion, rating, and fulfillment monitoring.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.walgreens.com/store/c/shampoo-and-conditioner/ID%3D360481-tier3"
    },
    {
      "url": "https://www.walgreens.com/store/store/category/productlist.jsp?N=360481&Eon=360481"
    }
  ],
  "maxItems": 100,
  "maxPages": 2,
  "useApifyProxy": false,
  "proxyGroups": []
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "title": {
    "label": "Product",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "regularPrice": {
    "label": "Regular price",
    "format": "number"
  },
  "salePrice": {
    "label": "Sale price",
    "format": "number"
  },
  "unitPrice": {
    "label": "Unit price",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "onlineInventoryStatus": {
    "label": "Online inventory",
    "format": "text"
  },
  "sameDayEnabled": {
    "label": "Same day",
    "format": "boolean"
  },
  "shippingEnabled": {
    "label": "Shipping",
    "format": "boolean"
  },
  "productId": {
    "label": "Product ID",
    "format": "text"
  },
  "gtin": {
    "label": "GTIN",
    "format": "text"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "link"
  },
  "observedStoreAddress": {
    "label": "Observed store",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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