# Oldest Walmart Reviews First - Historical Feedback

**Use case:** 

Pull Walmart product reviews from oldest to newest to trace historical feedback, with ratings, text, and dates. Export clean rows to CSV or JSON.

## Input

```json
{
  "productIds": [
    "18533160127"
  ],
  "maxReviewsPerProduct": 60,
  "sort": "submission-asc",
  "rating": "",
  "verifiedOnly": false
}
```

## Output

```json
{
  "author": {
    "label": "👤 Author",
    "format": "string"
  },
  "rating": {
    "label": "⭐ Rating",
    "format": "number"
  },
  "title": {
    "label": "📛 Title",
    "format": "string"
  },
  "text": {
    "label": "📝 Text",
    "format": "string"
  },
  "date": {
    "label": "📅 Date",
    "format": "string"
  },
  "verified_purchase": {
    "label": "✅ Verified",
    "format": "boolean"
  },
  "helpful_count": {
    "label": "👍 Helpful",
    "format": "integer"
  }
}
```

## About this Actor

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