# Walmart Search Plus Bestsellers - Prices and Rank

**Use case:** 

Combine Walmart keyword search with category bestsellers in one run, capturing prices, ratings, and rank. Export clean product rows to CSV or JSON.

## Input

```json
{
  "dataTypes": [
    "search",
    "bestsellers"
  ],
  "searchQueries": [
    "air fryer"
  ],
  "productIds": [],
  "categoryUrls": [],
  "maxResultsPerType": 40,
  "includeProductDetails": false,
  "sort": "best_match",
  "bestsellersDealsCategory": "home",
  "reviewsSort": "relevancy",
  "maxReviewsPerProduct": 40
}
```

## Output

```json
{
  "row_type": {
    "label": "🏷 Row type",
    "format": "string"
  },
  "name": {
    "label": "📛 Name",
    "format": "string"
  },
  "brand": {
    "label": "™ Brand",
    "format": "string"
  },
  "price": {
    "label": "💲 Price",
    "format": "number"
  },
  "rating": {
    "label": "⭐ Rating",
    "format": "number"
  },
  "review_count": {
    "label": "🗳 Reviews",
    "format": "integer"
  },
  "availability": {
    "label": "📦 Availability",
    "format": "string"
  }
}
```

## About this Actor

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