# Walmart Category Deep-Dive with Details

**Use case:** 

Paste a Walmart category URL and get its catalog enriched with full per-product details. Assortment and pricing intelligence in CSV or JSON.

## Input

```json
{
  "dataTypes": [
    "category"
  ],
  "searchQueries": [
    "laptop"
  ],
  "productIds": [],
  "categoryUrls": [
    "https://www.walmart.com/browse/electronics/3944"
  ],
  "maxResultsPerType": 40,
  "includeProductDetails": true,
  "sort": "best_match",
  "reviewsSort": "relevancy",
  "maxReviewsPerProduct": 40
}
```

## Output

```json
{
  "name": {
    "label": "📛 Name",
    "format": "string"
  },
  "brand": {
    "label": "™ Brand",
    "format": "string"
  },
  "price": {
    "label": "💲 Price",
    "format": "number"
  },
  "original_price": {
    "label": "🏷 List price",
    "format": "number"
  },
  "rating": {
    "label": "⭐ Rating",
    "format": "number"
  },
  "review_count": {
    "label": "🗳 Reviews",
    "format": "integer"
  },
  "seller_name": {
    "label": "🏪 Seller",
    "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.