Walmart Product Scraper
Scrape any Walmart product page by URL to retrieve title, price, images, ratings, reviews, seller info, and more. Each successful request costs 5 API credits.
Endpoint:
https://api.scrapingdog.com/walmart/productAPI Parameters
🔑
Scrapingdog Parameters
api_keyRequiredYour personal API key. Available on your dashboard.
Type: String
🛒
Product
urlRequiredThe full Walmart product page URL to scrape (e.g.,https://www.walmart.com/ip/46480251).
Type: String
API Examples
Code to Integrate
curl "https://api.scrapingdog.com/walmart/product?api_key=APIKEY&url=https://www.walmart.com/ip/46480251"
import requests params = { "api_key": "APIKEY", "url": "https://www.walmart.com/ip/46480251" } response = requests.get("https://api.scrapingdog.com/walmart/product", params=params) print(response.json())
const params = new URLSearchParams({ api_key: "APIKEY", url: "https://www.walmart.com/ip/46480251" }); const response = await fetch(`https://api.scrapingdog.com/walmart/product?${params}`); const data = await response.json(); console.log(data);
<?php $url = 'https://api.scrapingdog.com/walmart/product?' . http_build_query([ 'api_key' => 'APIKEY', 'url' => 'https://www.walmart.com/ip/46480251', ]); echo file_get_contents($url);
API Response
{
"title": "Crest 3D Whitestrips, Glamorous White, Teeth Whitening Strip Kit, 14 Treatments",
"description": "Crest 3D Whitestrips Glamorous White give you noticeably whiter teeth in just 3 days.",
"upc": "037000864417",
"item_id": "46480251",
"product_type": "Health",
"price": 25.00,
"currency": "USD",
"availability": "IN_STOCK",
"delivery_date": "Get it by Fri, Jun 27",
"images": [
"https://i5.walmartimages.com/seo/Crest-3D-Whitestrips_1.jpg",
"https://i5.walmartimages.com/seo/Crest-3D-Whitestrips_2.jpg"
],
"seller": {
"seller_id": "F55CDC31AB754BB68FE0B39041159D63",
"seller_name": "Walmart.com",
"display_name": "Walmart.com"
},
"overall_rating": 4.4,
"review_count": 1197,
"ratings_distribution": [
{ "stars": 5, "count": 876 },
{ "stars": 4, "count": 162 },
{ "stars": 3, "count": 68 },
{ "stars": 2, "count": 35 },
{ "stars": 1, "count": 56 }
],
"categories": [
{ "name": "Health", "url": "/cp/health/976760" },
{ "name": "Oral Care", "url": "/cp/oral-care/1085632" }
],
"specifications": {
"brand": "Crest",
"count": "28 strips (14 treatments)",
"active_ingredient": "Hydrogen Peroxide"
}
}