Home Services Search
$0.02per callhomeservices.searchFind local home service professionals
Endpoint
POST /v1/tools/homeservices.search/tasksInput
| Field | Type | Required | Description |
|---|---|---|---|
| service | string | yes | Service type (e.g. plumber, electrician, hvac, roofer, landscaper) |
| zip | string | yes | 5-digit US zip code |
| number_of_results | integer | no | Number of professionals to return |
Output
| Field | Type | Description |
|---|---|---|
| pros | array | List of matching professionals. Use id in homeservices.request to contact them. |
Example
Request
{
"service": "plumber",
"zip": "94110",
"number_of_results": 3
}Response
{
"pros": [
{
"id": "pro_abc123",
"name": "Bay Area Plumbing",
"phone": "415-555-0123",
"rating": 4.8,
"review_count": 127,
"address": "123 Main St, San Francisco, CA",
"website": "https://bayareaplumbing.com",
"description": "Licensed plumber with 15 years experience."
}
]
}