AGENTUTIL
DocsTools Reference

Home Services Search

$0.02per call
homeservices.search

Find local home service professionals

Endpoint
POST /v1/tools/homeservices.search/tasks

Input

FieldTypeRequiredDescription
servicestringyesService type (e.g. plumber, electrician, hvac, roofer, landscaper)
zipstringyes5-digit US zip code
number_of_resultsintegernoNumber of professionals to return

Output

FieldTypeDescription
prosarrayList 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."
    }
  ]
}