# Walmart Best Seller Extractor for Keywords

**Use case:** 

Extract Walmart best-seller search results for category research, product sourcing, and marketplace analysis.

## Input

```json
{
  "searchQueries": [
    "air fryer",
    "coffee maker"
  ],
  "maxProductsPerSearch": 40,
  "maxSearchPages": 1,
  "sort": "best_seller",
  "maxRequestRetries": 5
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Image",
    "format": "image"
  },
  "name": {
    "label": "Product",
    "format": "text"
  },
  "priceString": {
    "label": "Price",
    "format": "text"
  },
  "wasPrice": {
    "label": "Was",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "flag": {
    "label": "Badge",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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