# Scrape Walmart Product Listings — US & Canada

**Use case:** 

Search Walmart products by keyword on walmart.com or walmart.ca. Get price, rating, images, and seller info. Pay just $0.003 per item — zero wasted compute.

## Input

```json
{
  "market": "US",
  "keyword": "wireless earbuds",
  "cat_id": "",
  "sort": "price_low",
  "max_items": 50
}
```

## Output

```json
{
  "thumbnail_url": {
    "label": "Thumbnail URL",
    "format": "string"
  },
  "name": {
    "label": "Product Name",
    "format": "string"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "current_price_str": {
    "label": "Current Price String",
    "format": "string"
  },
  "was_price_str": {
    "label": "Was Price String",
    "format": "string"
  },
  "savings_str": {
    "label": "Savings String",
    "format": "string"
  },
  "average_rating": {
    "label": "Average Rating",
    "format": "number"
  },
  "number_of_reviews": {
    "label": "Number of Reviews",
    "format": "integer"
  },
  "availability": {
    "label": "Availability",
    "format": "string"
  },
  "seller_name": {
    "label": "Seller Name",
    "format": "string"
  },
  "seller_type": {
    "label": "Seller Type",
    "format": "string"
  },
  "delivery_date": {
    "label": "Delivery Date",
    "format": "string"
  },
  "is_sponsored": {
    "label": "Is Sponsored",
    "format": "boolean"
  },
  "market": {
    "label": "Market",
    "format": "string"
  },
  "canonical_url": {
    "label": "Product URL",
    "format": "string"
  }
}
```

## About this Actor

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