# Walmart Category Catalog Scraper

**Use case:** 

Paste any Walmart browse/category URL and pull its product catalog: names, prices, ratings and links. Assortment analysis data in CSV or JSON.

## Input

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

## 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 Product Scraper](https://apify.com/jdtpnjtp/walmart-product-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/jdtpnjtp/walmart-product-scraper) to learn more, explore other use cases, and run it yourself.