# Pull electrical contractor profiles without the email step

**Use case:** 

Collects electrical contractor profiles from The Blue Book with phone, address, trades, certifications and projects, skipping the visit to each company website so a 500 profile run finishes in a fraction of the time. Turn the email step back on when the list is final.

## Input

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

## 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`).
