# Amazon Australia Product & Reviews Task

**Use case:** 

Scrape Amazon AU products & reviews. Search/URL/ASIN. Get price, ratings, images, specs & optional reviews in flat records.

## Input

```json
{
  "mode": "search",
  "queries": [
    "echo dot"
  ],
  "sortBy": "relevance",
  "minRating": "0",
  "urls": [
    "https://www.amazon.com.au/s?k=echo+dot"
  ],
  "fetchDetails": true,
  "fetchReviews": true,
  "maxReviewsPerProduct": 10,
  "maxItems": 2,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "AU"
  },
  "maxNotifyListings": 50
}
```

## Output

```json
{
  "title": {
    "label": "Title"
  },
  "brand": {
    "label": "Brand"
  },
  "price": {
    "label": "Price"
  },
  "listPrice": {
    "label": "List price"
  },
  "currency": {
    "label": "Currency"
  },
  "rating": {
    "label": "Rating"
  },
  "reviewsCount": {
    "label": "Ratings"
  },
  "ratingDistribution": {
    "label": "Star distribution"
  },
  "availability": {
    "label": "Availability"
  },
  "asin": {
    "label": "ASIN"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "thumbnailImage": {
    "label": "Image",
    "format": "image"
  },
  "reviewsCollected": {
    "label": "Reviews collected"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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