Walmart Data Extractor
3 days trial then $30.00/month - No credit card required now
Walmart Data Extractor
3 days trial then $30.00/month - No credit card required now
Access a vast array of product data from Walmart with our Walmart Scraper. Extract images, brand details, prices, variations, and more. Customize your search with filters, categories, and lists to gather the information you need.
You can access the Walmart Data Extractor programmatically from your own Python applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input = {
9 "startUrls": [
10 { "url": "https://www.walmart.com/browse/auto-tires/brake-pads/91083_1074765_9038935_4582920" },
11 { "url": "https://www.walmart.com/browse/home/" },
12 { "url": "https://www.walmart.com/search?grid=true&query=Mixed+Bouquets" },
13 { "url": "https://www.walmart.com/ip/Mainstays-Blue-Sunflower-Mix-Bouquet/155345382" },
14 ],
15 "maxItems": 50,
16 "endPage": 1,
17 "extendOutputFunction": """($) => {
18 const result = {};
19 // Uncomment to add a title to the output
20 // result.title = $('title').text().trim();
21
22 return result;
23}""",
24 "outputFilterFunction": "(object) => ({...object})",
25 "proxy": { "useApifyProxy": True },
26}
27
28# Run the Actor and wait for it to finish
29run = client.actor("epctex/walmart-scraper").call(run_input=run_input)
30
31# Fetch and print Actor results from the run's dataset (if there are any)
32print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
33for item in client.dataset(run["defaultDatasetId"]).iterate_items():
34 print(item)
35
36# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start
Walmart Product Data Extractor API in Python
The Apify API client for Python is the official library that allows you to use Walmart Data Extractor API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
pip install apify-client
Other API clients include:
Actor Metrics
31 monthly users
-
8 stars
>99% runs succeeded
1.7 days response time
Created in Apr 2021
Modified a day ago