# Plumbers in Chicago — Yellow Pages Scraper

**Use case:** 

Find and extract plumber business listings in Chicago, IL. Names, phones, emails, websites, ratings, and reviews.

## Input

```json
{
  "search_term": "plumber",
  "location": "Chicago, IL",
  "max_results": 25,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "business_name": {
    "label": "Business Name",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "zip_code": {
    "label": "ZIP Code",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "review_count": {
    "label": "Reviews",
    "format": "number"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "listing_url": {
    "label": "Listing URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Yellow Pages Scraper](https://apify.com/ef12/yellow-pages-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ef12/yellow-pages-scraper) to learn more, explore other use cases, and run it yourself.