Walmart Deals Scraper avatar

Walmart Deals Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Walmart Deals Scraper

Walmart Deals Scraper

Scrape, find and compare Walmart deals, prices, rollbacks, ratings, reviews and product details. Built for US shopping search and price tracking.

Pricing

from $3.00 / 1,000 results

Rating

0.0

(0)

Developer

CheapGET

CheapGET

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Walmart Deals Scraper - Find Walmart Deals, Prices & Reviews Free

Walmart Free Trial No Code Required

Find and compare Walmart deals, prices, rollbacks, ratings, reviews and product details. Built for US shopping search and price tracking.

๐Ÿ† Key Features

  • ๐Ÿ” Keyword Product Search โ€” Find any product on Walmart by keyword, brand, or category
  • ๐ŸŒŽ 3 Countries โ€” Search Walmart US, Canada, and Mexico
  • ๐Ÿ“Š 23 Data Fields Per Product โ€” Price, rating, reviews, availability, images, and more
  • ๐Ÿท๏ธ Item IDs Included โ€” Walmart US Item ID and internal Item ID captured for every listing
  • โญ Ratings & Review Counts โ€” Average star rating and total reviews per product
  • ๐Ÿ“ Product Descriptions โ€” Full product description text collected from each listing
  • โšก Up to 10,000 Products โ€” Scale your shopping research to thousands of products per run

๐Ÿ’ฐ Pricing

Pay only for what you use โ€” no monthly fees, no subscriptions.

ItemCost
Actor Start$0.005 per run
Per Product$0.001 per product

Example: Download 200 products = $0.005 + (200 ร— $0.001) = $0.205 total

โ–ถ Start Free Trial โ€” No Credit Card Required

๐ŸŽฏ Use Cases

  • Find the Cheapest Price on Walmart โ€” Compare hundreds of products and prices instantly
  • Compare Walmart vs Amazon โ€” Use alongside Amazon Deals Scraper to find the best deal
  • Track Prices Over Time โ€” Re-run the same search daily to spot price drops
  • Shop Across North America โ€” Compare prices between US, Canada, and Mexico Walmart stores
  • Research Products Before Buying โ€” Read descriptions and check ratings before clicking Buy
  • Find In-Stock Items โ€” Filter the availability field for IN_STOCK products
  • Build a Shopping Wishlist โ€” Export products with images and prices for easy comparison

๐ŸŒŸ Why Choose This Actor

FeatureThis ToolManual Browsing
Time to get 200 productsSecondsHours
Easy result exportโœ… CSV/JSONโŒ Copy-paste only
Multi-country searchโœ… US/Canada/MexicoโŒ One at a time
Product descriptionsโœ… YesโŒ Read each page
Ratings & review countsโœ… YesโŒ Manual checking
Re-run for fresh pricesโœ… Any timeโŒ No tracking

๐Ÿš€ Quick Start

  1. Enter your search Type the product you want (e.g. Laptop) in the keyword field and select your country

  2. Click Start Set how many products you want (10 to 10,000) and click โ–ท Start

  3. Download your results Export as CSV, JSON, or Excel โ€” prices, descriptions, ratings, and images included

โ–ถ Try It Free Now

๐Ÿ’ป Input Parameters

ParameterTypeRequiredDescriptionExample
keywordTextโœ… YesProduct name, brand, or search termLaptop
countrySelectโœ… YesWalmart country site to searchUnited States
max_resultsNumberโœ… YesNumber of products to return (10โ€“10,000)50

Available Countries: United States, Canada, Mexico

๐Ÿ“ค Output Structure

Each result contains 23 fields:

FieldDescriptionExample
processorActor URL that processed this recordhttps://apify.com/cheapget/walmart-deals-scraper?fpr=aiagentapi
processed_atUTC timestamp of processing2026-04-24T12:00:00+00:00
platformPlatform labelWalmart
countryCountry searchedUnited States
country_codeCountry codeUS
keywordSearch keyword usedoffice chair
source_urlSearch results URLhttps://www.walmart.com/search?q=office+chair
product_urlCanonical Walmart product URLhttps://www.walmart.com/ip/.../123456789
detail_urlResolved detail page URLhttps://www.walmart.com/ip/.../123456789
us_item_idWalmart US item identifier123456789
item_idInternal item identifier987654321
titleProduct titleExample Ergonomic Office Chair
brandBrand nameBetter Homes & Gardens
seller_nameSeller nameWalmart
descriptionProduct description textErgonomic chair with lumbar support...
priceNumeric price149
currencyPrice currencyUSD
display_priceFormatted price text$149.00
ratingAverage star rating4.3
review_countTotal number of reviews278
availabilityStock availabilityIN_STOCK
primary_image_urlMain product image URLhttps://i5.walmartimages.com/seo/...
imagesAll product image URLs["https://i5.walmartimages.com/..."]

๐Ÿ”Œ Integrations

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_API_TOKEN")
run_input = {"keyword": "Laptop", "country": "United States", "max_results": 50}
run = client.actor("cheapget/walmart-deals-scraper").call(run_input=run_input)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item["title"], item["display_price"], item["rating"])

JavaScript

const { ApifyClient } = require("apify-client");
const client = new ApifyClient({ token: "YOUR_API_TOKEN" });
const run = await client.actor("cheapget/walmart-deals-scraper").call({
keyword: "Laptop",
country: "United States",
max_results: 50,
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) =>
console.log(item.title, item.display_price, item.rating),
);

curl

# Replace {} with the input JSON from the table above.
curl -X POST "https://api.apify.com/v2/acts/cheapget~walmart-deals-scraper/runs?token=YOUR_APIFY_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{}'

Make

Use Actor ID cheapget/walmart-deals-scraper in the Apify Run an Actor module, then export dataset items.

N8N

Use Actor ID cheapget/walmart-deals-scraper in the Apify node and pass the same input fields from the table above.

JSON-LD

{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "Walmart Deals Scraper",
"description": "Find and compare Walmart deals, prices, rollbacks, ratings, reviews and product details. Built for US shopping search and price tracking.",
"url": "https://apify.com/cheapget/walmart-deals-scraper?fpr=aiagentapi",
"applicationCategory": "Utility",
"operatingSystem": "Web",
"offers": {
"@type": "Offer",
"price": "0.005",
"priceCurrency": "USD"
},
"dateModified": "2026-04-29"
}

๐Ÿš€ Performance Tips

  • Use category-level keywords โ€” office furniture or gaming laptops returns broader, more comparable results than one specific model
  • Check the seller_name field โ€” Items sold directly by Walmart are typically eligible for free shipping and returns
  • Filter by availability โ€” Filter the exported data for availability = IN_STOCK to avoid ordering out-of-stock items
  • Compare with Amazon โ€” Run the same keyword on Amazon Deals Scraper to compare prices
  • Use review_count to find popular products โ€” Items with more reviews tend to be more reliable choices
  • Search in Canada or Mexico โ€” Some products have different prices on Walmart.ca or Walmart.com.mx
  • Read the description field โ€” Walmart product descriptions include sizing, material, and compatibility info that isn't always in the title

โ“ FAQ

Which Walmart countries can I search? You can search three Walmart storefronts: United States (Walmart.com), Canada (Walmart.ca), and Mexico (Walmart.com.mx).

What is the US Item ID? The us_item_id is Walmart's main product identifier, found in the URL of each product page (e.g. walmart.com/ip/Product-Name/123456789). Use it to link directly to a product or track it over time.

Does this include third-party seller products? Yes โ€” the seller_name field shows whether a product is sold by Walmart directly or by a third-party marketplace seller.

What does IN_STOCK mean in the availability field? IN_STOCK means the product is available for delivery or pickup. Walmart's availability statuses may include IN_STOCK, OUT_OF_STOCK, or other variants.

Can I get product descriptions? Yes โ€” the description field includes the full product description from Walmart's listing page.

How many products can I download at once? You can download between 10 and 10,000 products per run.

๐Ÿท๏ธ SEO Keywords

Primary Keywords: Walmart product search, find products on Walmart, download Walmart listings, Walmart price finder, search Walmart by keyword

Long-Tail Keywords: how to search Walmart by keyword, find cheap products on Walmart, export Walmart results to CSV, compare prices Walmart Amazon, get Walmart product data

Industry Keywords: Walmart US marketplace, Walmart Canada shopping, Walmart Mexico products, North America e-commerce, best deals Walmart

Location Keywords: Walmart United States, Walmart Canada, Walmart Mexico, Walmart online shopping, Walmart deals USA

Use Case Keywords: find best deals on Walmart, compare Walmart prices, track Walmart product prices, research products before buying Walmart, download Walmart product listings

This tool accesses publicly available product listing data on Walmart. All data retrieved is publicly visible to any user browsing the website without logging in.

Data Rights: All data is publicly accessible. You are responsible for how you use the data you collect.

Privacy Compliance: This tool does not collect personal user data. Output data consists of product listings and pricing information only. GDPR, CCPA, and other applicable privacy laws do not apply to publicly available product catalogue data.

Platform Terms: Use this tool responsibly and in accordance with Walmart's Terms of Service. Avoid excessive request volumes that could impact platform performance.

Need help? For questions, larger runs, or setup help, contact us at t.me/AiAgentApi.

๐Ÿ›๏ธ Shopping

๐Ÿš— Cars

๐Ÿ“‹ Classifieds

โญ Reviews

๐Ÿ’ผ Jobs

๐Ÿ  Real Estate

๐Ÿฝ๏ธ Restaurants

๐Ÿญ Suppliers & Products

โœ๏ธ Content

๐ŸŽฌ Video

Social Media

๐Ÿค Support & Community


Last Updated: April 29, 2026