# Costco Australia Product & Reviews Scraper

**Use case:** 

Scrape Costco AU products & reviews. Search/URL + filters. Get price, brand, rating, stock, specs, promos & full reviews in flat records.

## Input

```json
{
  "mode": "search",
  "queries": [
    "laptop"
  ],
  "sortBy": "relevance",
  "minRating": "0",
  "urls": [
    "https://www.costco.com.au/search?text=laptop"
  ],
  "fetchDetails": true,
  "fetchReviews": true,
  "maxReviewsPerProduct": 20,
  "maxItems": 20,
  "maxPages": 0,
  "proxy": {
    "useApifyProxy": true
  },
  "maxNotifyListings": 50
}
```

## Output

```json
{
  "name": {
    "label": "Name"
  },
  "brand": {
    "label": "Brand"
  },
  "price": {
    "label": "Price"
  },
  "priceFormatted": {
    "label": "Price (formatted)"
  },
  "currency": {
    "label": "Currency"
  },
  "averageRating": {
    "label": "Rating"
  },
  "numberOfReviews": {
    "label": "Ratings"
  },
  "reviewCount": {
    "label": "Reviews collected"
  },
  "stockStatus": {
    "label": "Stock"
  },
  "code": {
    "label": "Code"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "images": {
    "label": "Image",
    "format": "array"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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