BBB Data Crawler avatar
BBB Data Crawler
Try for free

3 days trial then $25.00/month - No credit card required now

View all Actors
BBB Data Crawler

BBB Data Crawler

epctex/bbb-scraper
Try for free

3 days trial then $25.00/month - No credit card required now

Scrape data from the Better Business Bureau as known as BBB. Crawl and extract company information, insights, financial projections, social links, accreditations and much more. Scrape the huge BBB Cloud, retrieve charities and businesses in the United States, Canada, and Mexico by their categories.

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 more

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        "https://www.bbb.org/us/ny/new-york/category/home-improvement",
12        "https://www.bbb.org/us/ny/new-york/categories",
13        "https://www.bbb.org/us/ny/new-york/profile/home-builders/jf-hughes-builders-inc-0121-87134180",
14        "https://www.bbb.org/search?find_country=USA&find_entity=66005-000&find_id=1099_2800-400-1100&find_latlng=40.762801%2C-73.977818&find_loc=New%20York%2C%20NY&find_text=Clean%20Up%20Services&find_type=Category&page=1&sort=Relevance"
15    ],
16    "maxItems": 50,
17    "endPage": 1,
18    "extendOutputFunction": ($) => { return {} },
19    "proxy": {
20        "useApifyProxy": true
21    }
22};
23
24(async () => {
25    // Run the Actor and wait for it to finish
26    const run = await client.actor("epctex/bbb-scraper").call(input);
27
28    // Fetch and print Actor results from the run's dataset (if any)
29    console.log('Results from dataset');
30    console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
31    const { items } = await client.dataset(run.defaultDatasetId).listItems();
32    items.forEach((item) => {
33        console.dir(item);
34    });
35})();
36
37// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Developer
Maintained by Community
Actor metrics
  • 23 monthly users
  • 100.0% runs succeeded
  • 0.3 days response time
  • Created in Oct 2021
  • Modified about 17 hours ago