The Walmart Product Scraper API allows you to seamlessly extract detailed product data, search results, and customer reviews directly from Walmart. With this API, you can integrate Walmart insights into your applications and streamline workflows such as price monitoring, inventory management, and product analysis.

  • Product Information: Name, Brand, Description, and SKU.
  • Pricing Details: Regular and Discounted Prices, Currency Information.
  • Images: High-quality product images.
  • Availability: Stock status and fulfillment details.
  • Categories: Breadcrumb hierarchy for navigation.
  • Customization Options: Variations like color and size, along with associated prices.
  • Warranty Information: Details about included warranties

Example Use Cases:

  • Price Comparison: Monitor pricing changes and compare products.
  • Inventory Management: Integrate real-time stock data into inventory systems.

Supported Query Parameters

PARAMETERTYPEDEFAULTDESCRIPTION
sku requiredstringThe Walmart item ID (numeric, 8 to 20 characters). Example: 5074872077.
urlstringThe full Walmart product URL. Example: https://www.walmart.com/ip/5074872077.
tldstring.comTop-level domain (TLD) for the Walmart website. Default is .com. Supported examples: .com, .ca
outputstringjsonThe format of the response. Supported values: json, csv.

How to Setup

Request the product endpoint using the SKU of the desired product:

https://ecommerce.api.zenrows.com/v1/targets/walmart/products/{sku}?apikey=YOUR_ZENROWS_API_KEY

Code Examples

Replace {sku} with the actual product ID.

Response Example

{
    "availability_status": "In Stock",
    "brand": "Apple",
    "category_breadcrumb": [
        "Electronics",
        "Cell Phones",
        "Smartphones"
    ],
    "customization_options": [
        {
            "image": "https:\/\/i5.walmartimages.com\/asr\/98765432-10ab-cdef-5678-90abcdef1234.jpg",
            "is_selected": true,
            "option_name": "Color",
            "price": 799.99,
            "value": "Black"
        }
    ],
    "description": "The latest iPhone with A15 Bionic chip, 5G capability, and advanced dual-camera system.",
    "fast_track_message": "Get it by tomorrow with fast shipping!",
    "fulfilled_by_walmart": true,
    "gtin": "00123456789012",
    "images": [
        "https:\/\/i5.walmartimages.com\/asr\/12345678-90ab-cdef-1234-567890abcdef.9d9d9d9d9d9d.jpg"
    ],
    "price": 799.99,
    "price_before_discount": 799.99,
    "price_currency_code": "USD",
    "price_currency_symbol": "$",
    "product_name": "Apple iPhone 13",
    "product_url": "https:\/\/www.walmart.com\/ip\/Apple-iPhone-13\/123456789",
    "rating": 4.8,
    "review_count": 3500,
    "sku": "123456789",
    "warranty": "1-year limited warranty"
}

Troubleshooting and FAQs