# Home Services Market Research — Multi-Trade Dataset

**Use case:** 

Build a comprehensive home services market research dataset from HomeAdvisor: contractor density, ratings distribution, Elite badge prevalence, service coverage and pricing patterns across major US metros.

## Input

```json
{
  "serviceTypes": [
    "plumbing",
    "hvac",
    "roofing",
    "electrical",
    "painting",
    "landscaping",
    "flooring",
    "carpentry",
    "handyman",
    "cleaning"
  ],
  "locations": [
    "Houston, TX",
    "Dallas, TX",
    "New York, NY",
    "Los Angeles, CA",
    "Chicago, IL",
    "Miami, FL",
    "Seattle, WA"
  ],
  "maxResults": 200,
  "includeReviews": true,
  "maxReviewsPerPro": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "averageRating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "eliteService": {
    "label": "Elite",
    "format": "boolean"
  },
  "isSponsored": {
    "label": "Sponsored",
    "format": "boolean"
  },
  "services": {
    "label": "Services",
    "format": "array"
  },
  "yearsInBusiness": {
    "label": "Years",
    "format": "number"
  },
  "businessDescription": {
    "label": "Description",
    "format": "text"
  },
  "freeEstimates": {
    "label": "Free Estimates",
    "format": "boolean"
  },
  "emergencyServices": {
    "label": "24/7 Emergency",
    "format": "boolean"
  },
  "responseRate": {
    "label": "Response Rate %",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [HomeAdvisor Scraper [Only $3] | Contractor Leads](https://apify.com/ahmed_jasarevic/homeadvisor-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ahmed_jasarevic/homeadvisor-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/ahmed_jasarevic/homeadvisor-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`).
