# Find Low-Price Walmart Products

**Use case:** 

Sort Walmart search results by lowest price and export product titles, prices, sellers, ratings, availability, images, and URLs for price comparison research.

## Input

```json
{
  "searchQueries": [
    "iphone"
  ],
  "searchUrls": [],
  "maxResults": 20,
  "pageLimit": 1,
  "sort": "price_low",
  "includeSponsored": true,
  "maxRequestRetries": 10,
  "requestTimeoutSecs": 30,
  "requestDelayMs": 500,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "string"
  },
  "position": {
    "label": "Position",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "wasPrice": {
    "label": "Was price",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review count",
    "format": "number"
  },
  "availability": {
    "label": "Availability",
    "format": "string"
  },
  "sellerName": {
    "label": "Seller name",
    "format": "string"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "isSponsored": {
    "label": "Sponsored",
    "format": "boolean"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "string"
  },
  "usItemId": {
    "label": "US item ID",
    "format": "string"
  },
  "imageUrl": {
    "label": "Image URL",
    "format": "string"
  },
  "fulfillment": {
    "label": "Fulfillment",
    "format": "array"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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