Walmart Product Scraper avatar

Walmart Product Scraper

Pricing

from $10.00 / 1,000 results

Go to Apify Store
Walmart Product Scraper

Walmart Product Scraper

Scrapes product pages from Walmart Accepts Walmart product URLs via `startUrls` and returns structured product data including title, price, availability, rating, reviews, brand, images, category, and description. Also outputs a run summary (success/fail counts) in key-value store.

Pricing

from $10.00 / 1,000 results

Rating

0.0

(0)

Developer

Jamshaid Arif

Jamshaid Arif

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

7 days ago

Last modified

Share

Walmart Product Scraper — Apify Actor

Stealth scraper for Walmart product pages.

{
"startUrls": [
{ "url": "https://www.walmart.com/ip/Apple-AirPods-4/5689919121" },
{ "url": "https://www.walmart.com/ip/.../12345678" }
],
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}

Tunable knobs (all optional): headless, settleMs, challengeExtraMs, maxRetries, politeDelayMinSec, politeDelayMaxSec.

Output

One record per URL pushed to the default dataset, e.g.:

{
"url": "https://www.walmart.com/ip/Apple-AirPods-4/5689919121",
"title": "Apple AirPods 4",
"price": 129.0,
"currency": "USD",
"availability": "IN_STOCK",
"rating": 4.5,
"review_count": 1234,
"image": "https://i5.walmartimages.com/...",
"brand": "Apple",
"item_id": "5689919121",
"seller": "Walmart.com",
"description": "...",
"category": "Electronics > Audio > Headphones",
"raw_json_found": true,
"error": null,
"scraped_at": "2026-05-20T18:30:00+00:00"
}

A run summary is also written to the key-value store as OUTPUT:

{ "ok": true, "total": 10, "fullExtraction": 9, "partial": 1, "failed": 0 }