# Auto repair shops in Houston, TX

**Use case:** 

Scrapes auto repair shops in Houston, Texas from the Better Business Bureau directory (bbb.org). Every row carries the BBB letter rating, accreditation status, complaints and customer reviews closed, years in business, legal entity type, owners, phone, website and full address. Up to 1,000 businesses per run. No login and no proxy needed.

## Input

```json
{
  "searchTerms": [
    "auto repair"
  ],
  "locations": [
    "Houston, TX"
  ],
  "states": [],
  "country": "USA",
  "maxItems": 1000,
  "onlyAccredited": false,
  "fetchProfiles": true,
  "mode": "auto",
  "ratings": [],
  "onlyQuoteRequests": false,
  "sortOrders": [
    "AToZ",
    "ZToA"
  ],
  "includeCategories": false,
  "maxConcurrency": 4
}
```

## Output

```json
{
  "business_name": {
    "label": "Business name",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "category_name": {
    "label": "Category name",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "string"
  },
  "is_accredited": {
    "label": "Is accredited",
    "format": "boolean"
  },
  "years_in_business": {
    "label": "Years in business",
    "format": "integer"
  },
  "phone": {
    "label": "Phone",
    "format": "array"
  },
  "website": {
    "label": "Website",
    "format": "string"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/oswaldocarabano/bbb-business-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
