# Bunnings Scraper - Products, Reviews & Q&A

**Use case:** 

Scrape Bunnings AU. Search/URL + filters. Get specs, price, images, warranty, reviews w/ stats, Q&A in clean JSON.

## Input

```json
{
  "mode": "search",
  "queries": [
    "cordless drill"
  ],
  "sortBy": "relevance",
  "urls": [
    "https://www.bunnings.com.au/search/products?q=hammer"
  ],
  "fetchDetails": true,
  "fetchReviews": true,
  "maxReviewsPerProduct": 20,
  "maxItems": 20,
  "maxPages": 100,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "AU"
  },
  "maxNotifyListings": 50
}
```

## Output

```json
{
  "name": {
    "label": "Name"
  },
  "brand": {
    "label": "Brand"
  },
  "price": {
    "label": "Price"
  },
  "currency": {
    "label": "Currency"
  },
  "priceType": {
    "label": "Price type"
  },
  "rating": {
    "label": "Rating"
  },
  "ratingCount": {
    "label": "Ratings"
  },
  "code": {
    "label": "Code"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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