# Coles Australia Grocery Product & Reviews Scraper Task

**Use case:** 

Scrape Coles AU products & reviews. Search/URL/ID. Get price, unit price, specials, size, availability, nutrition, allergens, ingredients, rating & reviews.

## Input

```json
{
  "mode": "search",
  "queries": [
    "milk"
  ],
  "categories": [
    "dairy-eggs-fridge"
  ],
  "sortBy": "relevance",
  "minRating": "0",
  "specialsCategory": "",
  "specialsOnly": false,
  "urls": [
    "https://www.coles.com.au/product/coles-full-cream-milk-3l-8150288"
  ],
  "fetchDetails": true,
  "fetchReviews": true,
  "maxReviewsPerProduct": 20,
  "maxItems": 3,
  "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": "Promo"
  },
  "comparablePrice": {
    "label": "Unit price"
  },
  "size": {
    "label": "Size"
  },
  "isOnSpecial": {
    "label": "On special",
    "format": "boolean"
  },
  "rating": {
    "label": "Rating"
  },
  "reviewCount": {
    "label": "Reviews"
  },
  "ratingDistribution": {
    "label": "Star distribution",
    "format": "object"
  },
  "isAvailable": {
    "label": "Available",
    "format": "boolean"
  },
  "productId": {
    "label": "Product ID"
  },
  "category": {
    "label": "Category"
  },
  "image": {
    "label": "Image",
    "format": "image"
  },
  "reviewsCollected": {
    "label": "Reviews collected"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Coles AU Scraper – Groceries, Prices & Reviews](https://apify.com/abotapi/coles-au-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/abotapi/coles-au-scraper) to learn more, explore other use cases, and run it yourself.