Walmart Data Extractor avatar
Walmart Data Extractor

Pricing

$30.00/month + usage

Go to Store
Walmart Data Extractor

Walmart Data Extractor

epctex/walmart-scraper

Developed by

epctex

Maintained by Community

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.

0.0 (0)

Pricing

$30.00/month + usage

14

Monthly users

36

Runs succeeded

>99%

Response time

20 hours

Last modified

14 hours ago

You can access the Walmart Data Extractor programmatically from your own 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.

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4// Replace the '<YOUR_API_TOKEN>' with your token
5const client = new ApifyClient({
6    token: '<YOUR_API_TOKEN>',
7});
8
9// Prepare Actor input
10const input = {
11    "startUrls": [
12        {
13            "url": "https://www.walmart.com/browse/auto-tires/brake-pads/91083_1074765_9038935_4582920"
14        },
15        {
16            "url": "https://www.walmart.com/browse/home/"
17        },
18        {
19            "url": "https://www.walmart.com/search?grid=true&query=Mixed+Bouquets"
20        },
21        {
22            "url": "https://www.walmart.com/ip/Mainstays-Blue-Sunflower-Mix-Bouquet/155345382"
23        }
24    ],
25    "maxItems": 50,
26    "endPage": 1,
27    "extendOutputFunction": ($) => {
28        const result = {};
29        // Uncomment to add a title to the output
30        // result.title = $('title').text().trim();
31    
32        return result;
33    },
34    "outputFilterFunction": (object) => ({...object}),
35    "proxy": {
36        "useApifyProxy": true
37    }
38};
39
40// Run the Actor and wait for it to finish
41const run = await client.actor("epctex/walmart-scraper").call(input);
42
43// Fetch and print Actor results from the run's dataset (if any)
44console.log('Results from dataset');
45console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
46const { items } = await client.dataset(run.defaultDatasetId).listItems();
47items.forEach((item) => {
48    console.dir(item);
49});
50
51// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

Walmart Product Data Extractor API in JavaScript

The Apify API client for JavaScript is the official library that allows you to use Walmart Data Extractor API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.

Install the apify-client

npm install apify-client

Other API clients include:

Pricing

Pricing model

Rental 

To use this Actor, you have to pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period. You also pay for the Apify platform usage.

Free trial

3 days

Price

$30.00