# Houzz Scraper (`crawlerbros/houzz-scraper`) Actor

Scrape public Houzz professional directory and profile pages. Extract business details, ratings, reviews, hires, services, location data, and profile URLs from Houzz contractors and design professionals.

- **URL**: https://apify.com/crawlerbros/houzz-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** Developer tools, Lead generation, Automation
- **Stats:** 9 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Houzz Scraper

Scrape public Houzz professional directory and profile pages with an HTTP-first actor. Extract contractor and design professional details such as ratings, review counts, hires on Houzz, business contact fields, service lists, and location metadata.

### Modes

This actor supports four input modes — pick whichever is most convenient:

1. **Profile URLs** — paste direct Houzz pro profile URLs into `profileUrls`.
2. **Directory URLs** — paste a directory or category page URL (such as a category filtered by a city) into `directoryUrls`.
3. **By city + category** — set the `city` (e.g. `Los-Angeles--CA`, `London`, `Sydney`) and the `category` dropdown (e.g. `general-contractors`). The actor builds the directory URL automatically for the selected `country`.
4. **Hybrid** — combine any of the above; profile URLs always extract first, then directory URLs are crawled until `maxItems` is reached.

### Markets supported

Houzz operates in 16 markets and the actor supports all of them via the `country` dropdown:

US, UK, Canada, Australia, Germany, France, Ireland, Italy, Spain, New Zealand, India, Singapore, Japan, Russia, Denmark, Sweden.

When `country` + `city` + `category` are set, the actor constructs the matching country-domain directory URL (`www.houzz.com`, `www.houzz.co.uk`, `www.houzz.de`, etc.).

### Categories supported

The `category` dropdown exposes 25+ professional categories — general contractors, architects, interior designers, kitchen/bath designers, painters, landscapers, home builders, and many more.

### Anti-bot

By default, the actor runs without proxy from datacenter IPs (Houzz is normally reachable). If a fetch is blocked:

- `useProxy` (default `false`) — when enabled, all requests go through the configured `proxyConfiguration`.
- `autoEscalateOnBlock` (default `true`) — when a profile or directory fetch returns nothing, the actor automatically retries that single URL through Apify residential proxy. The directory-card data is still emitted as a fallback if the profile page itself is blocked.

### Input fields

| Field | Type | Description |
|---|---|---|
| `directoryUrls` | array | Houzz directory or category page URLs. |
| `profileUrls` | array | Direct Houzz professional profile URLs. |
| `city` | string | City + state slug, e.g. `Los-Angeles--CA`, `London`. |
| `category` | enum | Houzz professional category slug. |
| `country` | enum | Houzz market/domain (us, uk, ca, au, de, fr, ie, it, es, nz, in, sg, jp, ru, dk, se). |
| `maxItems` | integer (1-250) | Hard cap on emitted records. |
| `useProxy` | boolean | Route requests through Apify proxy. |
| `autoEscalateOnBlock` | boolean | Auto-retry blocked fetches via residential proxy. |
| `proxyConfiguration` | object | Apify proxy configuration (advanced). |

### Output

Each record can include:

- `title` / `businessName` / `description`
- `phoneNumber` / `websiteUrl` / `licenseNumber`
- `ratingValue` / `reviewCount` / `hiresOnHouzz` / `followersCount` / `projectCount`
- `verifiedLicense` / `awards`
- `typicalJobCost` / `servicesProvided` / `areaServed`
- `streetAddress` / `city` / `state` / `postalCode` / `countryCode` / `country` / `fullAddress`
- `latitude` / `longitude`
- `imageUrl` / `directorySnippet`
- `sourceUrl` / `profileUrl` / `canonicalUrl` / `slug`
- `siteName` / `recordType` / `recordSource` / `scrapedAt`

`recordSource` is `"full_profile"` when the profile page was successfully fetched (full set of fields including `description`, `licenseNumber`, `websiteUrl`, `servicesProvided`, etc.), or `"directory_card"` when only the directory-card subset was available (anti-bot fallback). Directory-card records typically lack `description`, `licenseNumber`, `websiteUrl`, `typicalJobCost`, `servicesProvided`, and `followersCount`.

Empty values are omitted from output (no `null`, blank strings, or empty arrays).

#### Field notes

- `phoneNumber` is returned as a human-readable formatted string exactly as Houzz publishes it (e.g. `"(424) 280-3130"`), not a digits-only normalized form. If you need a digits-only value, strip non-digits in your downstream pipeline (e.g. `re.sub(r"\D", "", phoneNumber)`).
- `ratingValue` is a numeric (JSON number) on a `1.0`–`5.0` scale (e.g. `4.9` or `5`). Whole numbers may serialize without a decimal in JSON; cast to float in your downstream pipeline if you need a uniform numeric type.

### Limitations

- Houzz page structure varies by professional category and locale, so some fields appear only when publicly shown on the target page.
- When a profile page is blocked even after escalation, the actor falls back to the directory-card data (a smaller but still useful subset).

# Actor input Schema

## `directoryUrls` (type: `array`):

Houzz directory or category URLs, such as a contractor directory filtered by city. Used directly without modification.

## `profileUrls` (type: `array`):

Direct Houzz professional profile URLs.

## `city` (type: `string`):

City + state slug for the byCategory mode, e.g. 'Los-Angeles--CA', 'New-York--NY', 'Chicago--IL'. When set together with `category`, the actor builds a directory URL automatically.

## `category` (type: `string`):

Houzz professional category slug. When set together with `city`, the actor builds a directory URL automatically.

## `country` (type: `string`):

Houzz market/country domain to use when building directory URLs from `city` + `category`. Defaults to the US site (www.houzz.com).

## `maxItems` (type: `integer`):

Hard cap on emitted Houzz professional records.

## `useProxy` (type: `boolean`):

Route requests through Apify rotating proxy. Recommended for cloud runs — Houzz blocks known datacenter IP ranges without proxy rotation.

## `autoEscalateOnBlock` (type: `boolean`):

If a profile fetch is blocked, automatically retry with residential Apify proxy. The directory-card data is still emitted as a fallback.

## `proxyConfiguration` (type: `object`):

Optional Apify proxy configuration. Only used when `useProxy` is enabled. Leave empty to let `useProxy` + `autoEscalateOnBlock` pick sane defaults.

## Actor input object example

```json
{
  "directoryUrls": [
    "https://www.houzz.com/professionals/general-contractors/c/Los-Angeles--CA"
  ],
  "profileUrls": [],
  "city": "",
  "category": "",
  "country": "us",
  "maxItems": 25,
  "useProxy": true,
  "autoEscalateOnBlock": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `professionals` (type: `string`):

Dataset containing Houzz professional records.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "directoryUrls": [
        "https://www.houzz.com/professionals/general-contractors/c/Los-Angeles--CA"
    ],
    "profileUrls": [],
    "city": "",
    "category": "",
    "country": "us",
    "maxItems": 25,
    "useProxy": true,
    "autoEscalateOnBlock": true,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/houzz-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "directoryUrls": ["https://www.houzz.com/professionals/general-contractors/c/Los-Angeles--CA"],
    "profileUrls": [],
    "city": "",
    "category": "",
    "country": "us",
    "maxItems": 25,
    "useProxy": True,
    "autoEscalateOnBlock": True,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/houzz-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "directoryUrls": [
    "https://www.houzz.com/professionals/general-contractors/c/Los-Angeles--CA"
  ],
  "profileUrls": [],
  "city": "",
  "category": "",
  "country": "us",
  "maxItems": 25,
  "useProxy": true,
  "autoEscalateOnBlock": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call crawlerbros/houzz-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,crawlerbros/houzz-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/tIyCWZDGBFYdSY1vc/builds/OnbdtKIxWh86K5VaD/openapi.json
