Bloomingdales Scraper avatar
Bloomingdales Scraper
Try for free

14 days trial then $50.00/month - No credit card required now

View all Actors
Bloomingdales Scraper

Bloomingdales Scraper

dtrungtin/bloomingdales-scraper
Try for free

14 days trial then $50.00/month - No credit card required now

Extracts all the products from https://www.bloomingdales.com/

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn mode

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "startUrls": [
11        {
12            "url": "https://www.bloomingdales.com/"
13        }
14    ],
15    "maxItems": 50,
16    "extendOutputFunction": ($) => { return {} },
17    "proxyConfig": {
18        "useApifyProxy": true,
19        "apifyProxyGroups": [
20            "RESIDENTIAL"
21        ],
22        "apifyProxyCountry": "US"
23    }
24};
25
26(async () => {
27    // Run the Actor and wait for it to finish
28    const run = await client.actor("dtrungtin/bloomingdales-scraper").call(input);
29
30    // Fetch and print Actor results from the run's dataset (if any)
31    console.log('Results from dataset');
32    const { items } = await client.dataset(run.defaultDatasetId).listItems();
33    items.forEach((item) => {
34        console.dir(item);
35    });
36})();
Developer
Maintained by Community
Actor metrics
  • 1 monthly users
  • 100.0% runs succeeded
  • 0.0 days response time
  • Created in Nov 2019
  • Modified almost 2 years ago
Categories