# Export a Houzz professional profile and reviews

**Use case:** 

Extract public business details, aggregate rating, services, links, and review rows from one real Houzz professional profile.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.houzz.com/professionals/general-contractors/nytdr-new-york-total-damage-restoration-pfvwgb-pf~188655390"
    }
  ],
  "maxProfessionals": 1,
  "maxPages": 1,
  "includeProfileDetails": true,
  "includeReviews": true,
  "maxReviewsPerProfessional": 50
}
```

## Output

```json
{
  "recordType": {
    "label": "Type",
    "format": "string"
  },
  "name": {
    "label": "Professional",
    "format": "string"
  },
  "profileUrl": {
    "label": "Houzz profile",
    "format": "string"
  },
  "phone": {
    "label": "Phone",
    "format": "string"
  },
  "locality": {
    "label": "City",
    "format": "string"
  },
  "region": {
    "label": "Region",
    "format": "string"
  },
  "services": {
    "label": "Services",
    "format": "array"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review count",
    "format": "number"
  },
  "author": {
    "label": "Review author",
    "format": "string"
  },
  "datePublished": {
    "label": "Review date",
    "format": "string"
  },
  "reviewBody": {
    "label": "Review",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Houzz Professionals & Reviews Scraper](https://apify.com/automation-lab/houzz-professionals-reviews-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/houzz-professionals-reviews-scraper) to learn more, explore other use cases, and run it yourself.