# Walmart iPhone Product Data Extractor

**Use case:** 

Extract detailed data on iPhone products from Walmart. Get pricing, ratings, availability, and more in a clean dataset.

## Input

```json
{
  "urls": [
    "https://www.walmart.com/search?q=iphone"
  ],
  "keyword": "iphone",
  "results_wanted": 50,
  "max_pages": 3,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "itemId": {
    "label": "Item ID",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "averageRating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "sellerName": {
    "label": "Seller",
    "format": "text"
  },
  "availabilityStatus": {
    "label": "Availability",
    "format": "text"
  },
  "isSponsored": {
    "label": "Sponsored",
    "format": "boolean"
  },
  "productUrl": {
    "label": "Product",
    "format": "link"
  },
  "sourcePage": {
    "label": "Page",
    "format": "number"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "link"
  }
}
```

## About this Actor

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