# Walgreens Hair Care Product Scraper Example

**Use case:** 

Extract Walgreens shampoo products with prices, brands, ratings, inventory, promotions, images, GTINs, and fulfillment data.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.walgreens.com/store/c/shampoo-and-conditioner/ID%3D360481-tier3"
    }
  ],
  "maxItems": 25,
  "maxPages": 1,
  "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.