# Find A+ Rated Businesses on BBB

**Use case:** 

Scrape A+ rated businesses on BBB by category and city: name, BBB rating, accreditation, phone and address — quality-filtered leads. Export to CSV.

## Input

```json
{
  "searchTerms": [
    "HVAC"
  ],
  "locations": [
    "Chicago, IL"
  ],
  "maxResults": 100,
  "maxResultsPerSearch": 0,
  "accreditedOnly": false,
  "minRating": "A+",
  "includeDetails": false,
  "includeReviews": false,
  "maxReviewsPerBusiness": 8,
  "enrichContacts": false,
  "monitorMode": false,
  "monitorKey": "default",
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "businessName": {
    "label": "Business",
    "format": "text"
  },
  "bbbRating": {
    "label": "BBB Rating",
    "format": "text"
  },
  "accredited": {
    "label": "Accredited",
    "format": "boolean"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "zip": {
    "label": "ZIP",
    "format": "text"
  },
  "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.