# Ace Hardware Reviews Scraper

**Use case:** 

Scrape Ace Hardware product reviews, ratings, text, authors, dates, helpful votes, and media into JSON, CSV, or Excel.

## Input

```json
{
  "productUrls": [
    "https://www.acehardware.com/departments/tools/power-tools/corded-drills/2398303"
  ],
  "productIds": [],
  "maxReviewsPerProduct": 10,
  "sort": "newest",
  "ratings": [],
  "recommended": "all",
  "submittedAfter": "",
  "submittedBefore": "",
  "includeRatingsOnly": true,
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "productId": {
    "label": "Product ID",
    "format": "text"
  },
  "productName": {
    "label": "Product name",
    "format": "text"
  },
  "productBrand": {
    "label": "Brand",
    "format": "text"
  },
  "productUrl": {
    "label": "Product",
    "format": "link"
  },
  "productImageUrl": {
    "label": "Image",
    "format": "link"
  },
  "averageRating": {
    "label": "Average rating",
    "format": "number"
  },
  "totalReviewCount": {
    "label": "Total reviews",
    "format": "number"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewTitle": {
    "label": "Review title",
    "format": "text"
  },
  "reviewText": {
    "label": "Review text",
    "format": "text"
  },
  "nickname": {
    "label": "Nickname",
    "format": "text"
  },
  "userLocation": {
    "label": "Location",
    "format": "text"
  },
  "submissionTime": {
    "label": "Submitted",
    "format": "date"
  },
  "lastModificationTime": {
    "label": "Updated",
    "format": "date"
  },
  "isRecommended": {
    "label": "Recommended",
    "format": "boolean"
  },
  "helpfulVotes": {
    "label": "Helpful",
    "format": "number"
  },
  "unhelpfulVotes": {
    "label": "Unhelpful",
    "format": "number"
  },
  "photoUrls": {
    "label": "Photos",
    "format": "array"
  },
  "videoUrls": {
    "label": "Videos",
    "format": "array"
  },
  "isSyndicated": {
    "label": "Syndicated",
    "format": "boolean"
  },
  "syndicationSource": {
    "label": "Syndication source",
    "format": "text"
  },
  "contentLocale": {
    "label": "Locale",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Ace Hardware Product Reviews Scraper](https://apify.com/automation-lab/ace-hardware-product-reviews-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/ace-hardware-product-reviews-scraper) to learn more, explore other use cases, and run it yourself.