Skip to main content
AI Studio  add-on for Spider.
Home Services
houzz.com Verified

Houzz Scraper

Extract home design professional profiles, project portfolios, product listings, and design inspiration photos from Houzz platform. Built on spider-browser .

Get started Docs
target
houzz.com
success rate
99.9%
latency
~4ms
POST /fetch/houzz.com/
return_format
curl -X POST https://api.spider.cloud/fetch/houzz.com/ \
  -H "Authorization: Bearer $SPIDER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"return_format": "json"}'
200 OK · cache hit · response shape
{
  "url": "https://houzz.com/",
  "status": 200,
  "data": {
    "professional_name": "string",
    "rating": "string",
    "review_count": "string",
    "specialty": "string",
    "project_count": "string",
    "location": "string",
    "best_of_houzz_badge": "string",
    "portfolio_images": "string"
  }
}
Quick start

Extract data in minutes.

Structured JSON from houzz.com with a single POST. AI-resolved selectors, cached on the first call.

houzz-scraper.ts
import { SpiderBrowser } from "spider-browser";

const spider = new SpiderBrowser({
  apiKey: process.env.SPIDER_API_KEY!,
  stealth: 2,
});

await spider.connect();
const page = spider.page!;
await page.goto("https://www.houzz.com/professionals/general-contractor/los-angeles-ca-us-probr0-bo~t_11786~r_4849750");
await page.content(10000);

const data = await page.extractFields({
  name: "[data-testid='pro-name']",
  rating: "[data-testid='pro-rating']",
  reviews: "[data-testid='review-count']",
  specialty: "[data-testid='pro-specialty']",
  projects: "[data-testid='project-count']",
  image: { selector: "[data-testid='pro-photo'] img", attribute: "src" },
});

console.log(data);
await spider.close();
ready to run · spider-browser · TypeScript
Extraction

Fields you can pull.

Professional nameRatingReview countSpecialtyProject countLocationBest of Houzz badgePortfolio images
Listings

Provider search

Extract contractor profiles, ratings, and availability from houzz.com.

Geo

Local targeting

Access location-specific service providers with geo-targeted proxies.

Data

Review aggregation

Extract ratings, reviews, and pricing from home service marketplaces.

Related

More Home Services scrapers.

Start

Start scraping houzz.com.

Grab an API key and call the endpoint above. The first request resolves the config; every request after hits cache.