# Scrape BBB Customer Reviews & Ratings

**Use case:** 

Scrape BBB customer reviews per business: author, rating, date and text, alongside the business name, BBB rating and contact details. Export to CSV.

## Input

```json
{
  "searchTerms": [
    "Auto Repair"
  ],
  "locations": [
    "Houston, TX"
  ],
  "maxResults": 100,
  "maxResultsPerSearch": 0,
  "accreditedOnly": false,
  "minRating": "any",
  "includeDetails": true,
  "includeReviews": true,
  "maxReviewsPerBusiness": 8,
  "enrichContacts": false,
  "monitorMode": false,
  "monitorKey": "default",
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "businessName": {
    "label": "Business",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "yearsInBusiness": {
    "label": "Years",
    "format": "number"
  },
  "bbbRating": {
    "label": "BBB Rating",
    "format": "text"
  },
  "leadScore": {
    "label": "Lead score",
    "format": "number"
  },
  "profileUrl": {
    "label": "BBB Profile",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [BBB Scraper - Business Leads, Ratings & Accreditation](https://apify.com/scrapesage/bbb-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/bbb-scraper) to learn more, explore other use cases, and run it yourself.