1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "url": "https://www.homedepot.com/p/Gorilla-Ladders-2-Step-Compact-Steel-Step-Stool-225-lbs-Load-Capacity-Type-II-Duty-Rating-8ft-Reach-Height-GLS-2CS-2/310432817",
12 "zipcode": "12345"
13};
14
15
16const run = await client.actor("scraped/home-depot-store-inventory-lookup").call(input);
17
18
19console.log('Results from dataset');
20console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
21const { items } = await client.dataset(run.defaultDatasetId).listItems();
22items.forEach((item) => {
23 console.dir(item);
24});
25
26