# Walmart Product Feedback Monitor

**Use case:** 

Monitor Walmart reviews for product quality signals, low-star complaints, verified buyers, and helpful feedback trends.

## Input

```json
{
  "productUrls": [
    "5113175776"
  ],
  "maxReviewsPerProduct": 200,
  "sort": "rating-asc",
  "filterByStar": 1,
  "maxRequestRetries": 5
}
```

## Output

```json
{
  "productName": {
    "label": "Product",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "title": {
    "label": "Review Title",
    "format": "text"
  },
  "reviewerName": {
    "label": "Reviewer",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "isVerifiedPurchase": {
    "label": "Verified",
    "format": "boolean"
  },
  "helpfulVotes": {
    "label": "Helpful",
    "format": "number"
  },
  "reviewText": {
    "label": "Review Text",
    "format": "text"
  },
  "userLocation": {
    "label": "Location",
    "format": "text"
  },
  "itemId": {
    "label": "Item ID",
    "format": "text"
  }
}
```

## About this Actor

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