# Scrape Bunnings.com.au Product Details

**Use case:** 

Bunnings.com.au scrape API. Fetching bunnings products details based on product list. Get detailed product info and GTIN from historic data, where available.

## Input

```json
{
  "mode": "product",
  "store": "6425",
  "query": "cordless drill",
  "categoryUrl": "https://www.bunnings.com.au/products/outdoor-living/camping-recreation/camping-power-cables",
  "maxPages": 5,
  "sortOrder": "PriceAscending",
  "productIdsOrUrls": [
    "https://www.bunnings.com.au/saxon-kids-garden-3pc-set-timber_p0491608",
    "0625595",
    "0429907",
    "0357650"
  ]
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "string"
  },
  "product_image": {
    "label": "Image",
    "format": "string"
  },
  "product_id": {
    "label": "Product ID",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviews": {
    "label": "Reviews",
    "format": "integer"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "isInStore": {
    "label": "In Store",
    "format": "boolean"
  },
  "isSpecialOrder": {
    "label": "Special Order",
    "format": "boolean"
  },
  "isNewArrival": {
    "label": "New Arrival",
    "format": "boolean"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "specifications": {
    "label": "Specifications",
    "format": "string"
  }
}
```

## About this Actor

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