# Woolworths AU Grocery Product & Reviews Scraper

**Use case:** 

Scrape Woolworths AU. Search/URL. Get price, unit price, specials, pack size, stock, images, nutrition, allergens, rating & optional reviews in flat records.

## Input

```json
{
  "mode": "search",
  "queries": [
    "milk"
  ],
  "sortBy": "relevance",
  "minRating": "0",
  "specialsCategory": "",
  "specialsOnly": false,
  "urls": [
    "https://www.woolworths.com.au/shop/productdetails/32731"
  ],
  "fetchDetails": true,
  "fetchReviews": false,
  "maxReviewsPerProduct": 20,
  "maxItems": 20,
  "maxPages": 100,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "AU"
  },
  "maxNotifyListings": 50
}
```

## Output

```json
{
  "name": {
    "label": "Name"
  },
  "title": {
    "label": "Full title"
  },
  "brand": {
    "label": "Brand"
  },
  "price": {
    "label": "Price"
  },
  "wasPrice": {
    "label": "Was"
  },
  "savingsAmount": {
    "label": "Save $"
  },
  "savingsPercent": {
    "label": "Save %"
  },
  "promoLabel": {
    "label": "Offer"
  },
  "cupString": {
    "label": "Unit price"
  },
  "packageSize": {
    "label": "Size"
  },
  "isOnSpecial": {
    "label": "On special",
    "format": "boolean"
  },
  "rating": {
    "label": "Rating"
  },
  "reviewCount": {
    "label": "Reviews"
  },
  "ratingDistribution": {
    "label": "Star distribution",
    "format": "object"
  },
  "isInStock": {
    "label": "In stock",
    "format": "boolean"
  },
  "stockcode": {
    "label": "Code"
  },
  "category": {
    "label": "Category"
  },
  "thumbnailImage": {
    "label": "Image",
    "format": "image"
  },
  "reviewsCollected": {
    "label": "Reviews collected"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Woolworths Australia Grocery Product & Reviews Scraper](https://apify.com/abotapi/woolworths-au-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/abotapi/woolworths-au-scraper) to learn more, explore other use cases, and run it yourself.