# Lowe's product reviews scraper example

**Use case:** 

Scrape newest Lowe's product reviews, ratings, recommendations, verified purchases, helpful votes, responses, and media.

## Input

```json
{
  "productUrls": [
    "https://www.lowes.com/pd/BLACK-DECKER-12-Volt-Lithium-Ion-3-8-in-Cordless-Drill-with-Battery/3285414"
  ],
  "productIds": [],
  "maxReviewsPerProduct": 20,
  "sort": "newestFirst",
  "ratings": [],
  "newerThan": "",
  "includeRatingsOnly": true
}
```

## Output

```json
{
  "reviewId": {
    "label": "Review ID",
    "format": "text"
  },
  "productId": {
    "label": "Product ID",
    "format": "text"
  },
  "productUrl": {
    "label": "Product",
    "format": "link"
  },
  "productTitle": {
    "label": "Product title",
    "format": "text"
  },
  "productBrand": {
    "label": "Brand",
    "format": "text"
  },
  "aggregateRating": {
    "label": "Aggregate rating",
    "format": "number"
  },
  "totalReviewCount": {
    "label": "Total reviews",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewTitle": {
    "label": "Review title",
    "format": "text"
  },
  "reviewText": {
    "label": "Review text",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "submittedAt": {
    "label": "Submitted",
    "format": "date"
  },
  "isRecommended": {
    "label": "Recommended",
    "format": "boolean"
  },
  "verifiedPurchaser": {
    "label": "Verified purchaser",
    "format": "boolean"
  },
  "incentivizedReview": {
    "label": "Incentivized",
    "format": "boolean"
  },
  "ratingsOnly": {
    "label": "Rating only",
    "format": "boolean"
  },
  "helpfulVotes": {
    "label": "Helpful votes",
    "format": "number"
  },
  "notHelpfulVotes": {
    "label": "Not helpful votes",
    "format": "number"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "syndicated": {
    "label": "Syndicated",
    "format": "boolean"
  },
  "photoUrls": {
    "label": "Photos",
    "format": "array"
  },
  "videoUrls": {
    "label": "Videos",
    "format": "array"
  },
  "merchantResponses": {
    "label": "Merchant responses",
    "format": "object"
  },
  "ratingDistribution": {
    "label": "Rating distribution",
    "format": "object"
  },
  "locale": {
    "label": "Locale",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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