# Extract Yelp Business Contacts

**Use case:** 

Pull phone numbers, websites and addresses for businesses on Yelp by category and city. Ready for B2B outreach.

## Input

```json
{
  "searchTerms": [
    "plumbers"
  ],
  "locations": [
    "Denver, CO"
  ],
  "startUrls": [],
  "maxResults": 50,
  "maxReviewsPerBusiness": 5,
  "reviewSortBy": "newest",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "businessName": {
    "label": "Name",
    "format": "string"
  },
  "phone": {
    "label": "Phone",
    "format": "string"
  },
  "website": {
    "label": "Website",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "categories": {
    "label": "Industry",
    "format": "array"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "# Reviews",
    "format": "integer"
  },
  "url": {
    "label": "Source",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Yelp Scraper — Leads, Reviews & Contacts](https://apify.com/sleek_waveform/yelp-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sleek_waveform/yelp-scraper) to learn more, explore other use cases, and run it yourself.