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

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "startUrls": [
8    "https://www.bbb.org/us/ny/new-york/category/home-improvement",
9    "https://www.bbb.org/us/ny/new-york/categories",
10    "https://www.bbb.org/us/ny/new-york/profile/home-builders/jf-hughes-builders-inc-0121-87134180",
11    "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"
12  ],
13  "maxItems": 50,
14  "endPage": 1,
15  "extendOutputFunction": "($) => { return {} }",
16  "proxy": {
17    "useApifyProxy": true
18  }
19}
20EOF
21
22# Run the Actor using an HTTP API
23# See the full API reference at https://docs.apify.com/api/v2
24curl "https://api.apify.com/v2/acts/epctex~bbb-scraper/runs?token=$API_TOKEN" \
25  -X POST \
26  -d @input.json \
27  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 32 monthly users
  • 2 stars
  • 98.4% runs succeeded
  • 16 hours response time
  • Created in Oct 2021
  • Modified about 23 hours ago