# Build a list of plumbing contractors with emails

**Use case:** 

Scrapes plumbing contractor profiles from thebluebook.com search results, then visits each company's own website to find a contact email, and returns company name, phone, email, address, trade categories, MBE, WBE and DBE certifications and project history. A verified B2B list for suppliers and recruiters.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.thebluebook.com/search.html?region=2&searchsrc=index&class=3370&searchTerm=Plumbing%20Contractors"
    }
  ],
  "maxItems": 200,
  "disableEmailScrape": false
}
```

## Output

```json
{
  "name": {
    "label": "Company",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "city_state": {
    "label": "Location",
    "format": "text"
  },
  "trade": {
    "label": "Trade",
    "format": "text"
  },
  "certifications": {
    "label": "Certifications",
    "format": "array"
  },
  "service_area": {
    "label": "Service area",
    "format": "text"
  },
  "established": {
    "label": "Established",
    "format": "text"
  },
  "company_size": {
    "label": "Size",
    "format": "text"
  },
  "annual_volume": {
    "label": "Annual volume",
    "format": "text"
  },
  "contact_name": {
    "label": "Contact",
    "format": "text"
  },
  "contact_role": {
    "label": "Role",
    "format": "text"
  },
  "contact_phone": {
    "label": "Contact phone",
    "format": "text"
  },
  "profile_link": {
    "label": "Profile",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [thebluebook.com Scraper](https://apify.com/fayoussef/thebluebook-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fayoussef/thebluebook-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/fayoussef/thebluebook-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`).
