# Home Depot Product Review Monitor Workflow

**Use case:** 

Monitor recent Home Depot customer reviews across products for sentiment, quality issues, verified feedback, and reputation alerts.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.homedepot.com/p/reviews/Whirlpool-25-cu-ft-French-Door-Refrigerator-in-Fingerprint-Resistant-Stainless-Steel-WRF555SDFZ/301711642/1"
    }
  ],
  "productIds": [
    "301711642",
    "312613758"
  ],
  "maxReviews": 60,
  "maxPagesPerProduct": 3,
  "minDate": "2025-01-01"
}
```

## Output

```json
{
  "productId": {
    "label": "Internet ID"
  },
  "productTitle": {
    "label": "Product"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewTitle": {
    "label": "Review title"
  },
  "reviewText": {
    "label": "Review"
  },
  "reviewerNickname": {
    "label": "Reviewer"
  },
  "reviewDate": {
    "label": "Review date",
    "format": "date"
  },
  "verifiedPurchase": {
    "label": "Verified"
  },
  "recommended": {
    "label": "Recommended"
  },
  "positiveHelpfulVotes": {
    "label": "Helpful votes",
    "format": "number"
  },
  "averageRating": {
    "label": "Product rating",
    "format": "number"
  },
  "totalReviews": {
    "label": "Product reviews",
    "format": "number"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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