# Walmart Item ID Review Extractor

**Use case:** 

Extract Walmart product reviews by item ID and sort them by helpfulness or recency for product analysis.

## Input

```json
{
  "productUrls": [
    "5113175776"
  ],
  "maxReviewsPerProduct": 100,
  "sort": "helpful",
  "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.