# Find top-rated Walmart gift options by price band

**Use case:** 

Collect a short Walmart product list filtered by price and rating to research gift-ready options in a category.

## Input

```json
{
  "mode": "search",
  "searchQuery": "coffee makers",
  "maxProducts": 5,
  "includeReviews": false,
  "maxReviewsPerProduct": 20,
  "includeVariants": true,
  "includeSpecifications": true,
  "minPrice": 30,
  "maxPrice": 150,
  "minRating": "4.0",
  "sortBy": "rating",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "itemId": {
    "label": "Item id",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "currentPrice": {
    "label": "Price",
    "format": "number"
  },
  "listPrice": {
    "label": "List $",
    "format": "number"
  },
  "savings": {
    "label": "Savings",
    "format": "number"
  },
  "onSale": {
    "label": "On sale",
    "format": "boolean"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "# Reviews",
    "format": "number"
  },
  "inStock": {
    "label": "In stock",
    "format": "boolean"
  },
  "sellerName": {
    "label": "Seller",
    "format": "string"
  },
  "sellerType": {
    "label": "Seller type",
    "format": "string"
  },
  "freeShipping": {
    "label": "Free ship",
    "format": "boolean"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "imageUrl": {
    "label": "Image",
    "format": "string"
  },
  "productUrl": {
    "label": "URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Walmart Product, Price and Review Data Scraper](https://apify.com/khadinakbar/walmart-data-extractor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/khadinakbar/walmart-data-extractor) to learn more, explore other use cases, and run it yourself.