Get product details such as pricing, description, rating, model numbers, and 20+ product-related data from Walmart in real time.
{
"name": "Nostalgia PCM205PK Hard & Sugar-Free Candy Cotton Candy Maker",
"brand": "Nostalgia",
"regular_price": "29.99",
"sale_price": "22.99",
"currency": "USD",
"images": [
"https://i5.walmartimages.com/asr/9064672e-3957-43fb-9d8b-35663af28562_1.c36862d7cb7811a5c608d0d26e2d6eb3.jpeg",
"https://i5.walmartimages.com/asr/c55388da-08bd-471e-b8be-c4ce340dbe26_1.6ee6e3588b58aada61bc61ef21b02a6c.jpeg",
"https://i5.walmartimages.com/asr/83668887-2e4e-4047-9f12-b3980a4ed80b_1.3e5f98ccb26f26e675d48230055cb833.jpeg",
"https://i5.walmartimages.com/asr/0e936b32-2b8b-4ea9-9ea0-4d2349d0bb28_1.55bd998098472a0d3ea3d7b76181f41d.jpeg",
"https://i5.walmartimages.com/asr/b93934c8-90cd-4398-811d-e0450976e857_1.44aa8fba5a064bdfe4468f0326f9ca5c.jpeg",
"https://i5.walmartimages.com/asr/c11f6d83-5d7b-4dba-be1a-3e8a799475f0_1.5fb1031269817ef4db661d8d42dfb959.jpeg",
"https://i5.walmartimages.com/asr/7def12e4-23fd-487a-99ee-c30c481d3f2b_1.d463a35327bbb24b7b1eef9389c055fe.jpeg"
],
"seller": "Walmart.com",
"availability_status": "In Stock.",
"rating_histogram": {
"five_star": "55%",
"four_star": "5%",
"three_star": "10%",
"two_star": "5%",
"one_star": "25%"
},
"rating": "3.6",
"product_reviews": [{
"reviewed_date": "January 24, 2025",
"review_title": null,
"review_text": "It works great! My kids and I love it!",
"rating": "5",
"author_name": "WorksGreatWithJollys",
"badge": null,
"review_url": "https://www.walmart.com/reviews/product/953027241",
"review_likes": "0",
"review_dislikes": "0"
}],
"review_count": "20",
"product_information": {
"Brand": "Nostalgia",
"Manufacturer Part Number": "pcm205pk",
"Assembled Product Weight": "2.85 oz",
"Assembled Product Dimensions (L x W x H)": "11.25 x 11.25 x 9.00 Inches"
},
"product_category": "Home > Appliances > Kitchen Appliances > Ice Cream & Dessert Makers > Cotton Candy & Candy Makers",
"model": "082677010001",
"item_id": "953027241",
"walmart_item_number": "576142105",
"detailed_description": "Make every occasion a little sweeter with the Nostalgia PCM205PK Hard & Sugar Free Candy Cotton Candy Maker. Few treats are as delightful as cotton candy or as long-lasting as hard candy. With this hard candy cotton candy maker from Nostalgia, you can create both in the comfort of your own kitchen, with a special extractor head that makes candy creation easy. The maker features a specialty extractor head to create hard candy, sugar-free hard candy and flossing sugar, yielding sweet, pretty treats that are ideal for everything from gifts to occasional indulgences. The unit's clear bowl guard acts keeps ingredients neatly contained while allowing you to watch your creations come to life; four suction-cup feet keep it stable on countertop and table surfaces. It can be used with Nostalgia cotton candy and hard candy party kits for effortless use. The Nostalgia cotton candy maker comes with two reusable cotton candy cones, a sugar scoop and an extractor head; kits sold separately. Nostalgia PCM205PK Hard & Sugar-Free Candy Cotton Candy Maker: Speciality extractor head works with hard candy, sugar-free hard candy or flossing sugar Perfect for use with Nostalgia Cotton Candy Kits; Cotton Candy Flossing Sugar - CCFS300, Cotton Candy Party Kit - FSCC8, Hard Candy Party Kit - HCK800 Clear rim guard allows for easy viewing of cotton candy making Unit disassembles for easy cleaning Suction cup feet for stability Includes 2 reusable plastic cones, 1 sugar scoop, and 1 extractor head Hard candy cotton candy maker only; Nostalgia Cotton Candy and Hard Candy Party Kits sold separately",
"attributes": "Pink",
"variation_item_id": [
"953027241",
"370814713"
],
"product_variations": [{
"Actual Color": [
"Aqua",
"Pink"
]
}],
"url": "https://www.walmart.com/ip/Nostalgia-PCM205PK-Hard-Sugar-Free-Candy-Cotton-Candy-Maker/953027241?selected=true"
}
With just a few lines of code, you can integrate our API with your application and start receiving data as a JSON response.
import http.client
conn = http.client.HTTPSConnection("get.scrapehero.com")
conn.request("GET", "/wmt/product-details/?x-api-key=XXXXXXXXXXXXXX&product_id=953027241&product_url=https%3A%2F%2Fwww.walmart.com%2Fip%2FNostalgia-PCM205PK-Hard-Sugar-Free-Candy-Cotton-Candy-Maker%2F953027241%3Fselected%3Dtrue")
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
const http = require("https");
const options = {
"method": "GET",
"hostname": "get.scrapehero.com",
"port": null,
"path": "/wmt/product-details/?x-api-key=XXXXXXXXXXXXXX&product_id=953027241&product_url=https%3A%2F%2Fwww.walmart.com%2Fip%2FNostalgia-PCM205PK-Hard-Sugar-Free-Candy-Cotton-Candy-Maker%2F953027241%3Fselected%3Dtrue",
"headers": {}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.end();
"https://get.scrapehero.com/wmt/product-details/?x-api-key=XXXXXXXXXXXXXX&product_id=953027241&product_url=https%3A%2F%2Fwww.walmart.com%2Fip%2FNostalgia-PCM205PK-Hard-Sugar-Free-Candy-Cotton-Candy-Maker%2F953027241%3Fselected%3Dtrue",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
HttpResponse response = Unirest.get("https://get.scrapehero.com/wmt/product-details/?x-api-key=XXXXXXXXXXXXXX&product_id=953027241&product_url=https%3A%2F%2Fwww.walmart.com%2Fip%2FNostalgia-PCM205PK-Hard-Sugar-Free-Candy-Cotton-Candy-Maker%2F953027241%3Fselected%3Dtrue")
.asString();
require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://get.scrapehero.com/wmt/product-details/?x-api-key=XXXXXXXXXXXXXX&product_id=953027241&product_url=https%3A%2F%2Fwww.walmart.com%2Fip%2FNostalgia-PCM205PK-Hard-Sugar-Free-Candy-Cotton-Candy-Maker%2F953027241%3Fselected%3Dtrue")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body
We have a wide variety of Walmart scrapers and Real-Time APIs available on our Marketplace. You can use these web scraping tools to get more data from Walmart.
Does not renew
Compare all features &
choose what works best for you
Need More?
Contact us for a custom plan based on your needs.
Join 12400+ customers who love working with ScrapeHero
A few mouse clicks and copy/paste is all that it takes!
The API returns highly structured JSON data in real-time within seconds.
Our robust infrastructure allows us to scale the API to meet your high volume demands easily.
You can easily integrate our APIs to your application and stream extracted data seamlessly.
We use the best residential proxies to route your requests to avoid IP bans and CAPTCHAs.
Can’t find what you’re looking for? Check out Cloud Support for assistance!
Sure, you can modify or cancel your plan at any time. Click on the Billing tab to change your plan.
If you cancel, you’ll be billed for the current month, but you won’t be charged again. If you have any page credits, you can still use our service until it reaches its limit.
Normally, it will take 3-5 business days to build a custom API endpoint. However, this may vary according to the complexity of the site and the proposed business logic.
No, we always provide the latest and most accurate data present on the website. However, you are free to cache the results in your systems to reduce API calls and costs.
Sure, we can build custom solutions for you. Please contact our Sales team using this link, and that will get us started. In your message, please describe in detail what you require.
All our data credit reset at the end of the billing period. Any unused credits do not carry over to the next billing period and also are nonrefundable. This is consistent with most software subscription services.
Our APIs or Crawlers only automate the process of extracting the data that’s already on the website and is extractable. If the information isn’t on the website or is in a format that is not extractable, we will not be able to get it for you at all.
e.g. If you need emails from a website and the website does not have emails, it is fairly obvious that even though you need the emails, we cant make them up.
Contact us to schedule a brief, introductory call with our experts and learn how we can assist your needs.
Legal Disclaimer: ScrapeHero is an equal opportunity data service provider, a conduit, just like an ISP. We just gather data for our customers responsibly and sensibly. We do not store or resell data. We only provide the technologies and data pipes to scrape publicly available data. The mention of any company names, trademarks or data sets on our site does not imply we can or will scrape them. They are listed only as an illustration of the types of requests we get. Any code provided in our tutorials is for learning only, we are not responsible for how it is used.