# BBB Phoenix Roofing Contractor Scraper

**Use case:** 

Scrape a public BBB Phoenix roofing search URL and export business profiles, BBB ratings, accreditation, phones, and location data.

## Input

```json
{
  "search": "Home Improvement",
  "location": "Los Angeles, CA",
  "distance": 20,
  "startUrls": [
    {
      "url": "https://www.bbb.org/search?find_country=USA&find_text=Roofing%20Contractors&find_loc=Phoenix%2C%20AZ&find_type=Category"
    }
  ],
  "maxResults": 75,
  "maxPages": 8,
  "maxRequestRetries": 3,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "businessName": {
    "label": "Business name",
    "format": "string"
  },
  "primaryCategory": {
    "label": "Primary category",
    "format": "string"
  },
  "bbbRating": {
    "label": "BBB rating",
    "format": "string"
  },
  "isBbbAccredited": {
    "label": "Accredited",
    "format": "boolean"
  },
  "phones": {
    "label": "Phones",
    "format": "array"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "postalCode": {
    "label": "Postal code",
    "format": "string"
  },
  "profileUrl": {
    "label": "BBB profile",
    "format": "string"
  },
  "bbbOffice": {
    "label": "BBB office",
    "format": "string"
  },
  "sourceQuery": {
    "label": "Source query",
    "format": "object"
  }
}
```

## About this Actor

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