# Yelp Business Leads Scraper – Build B2B Lead Lists

**Use case:** 

Build B2B lead lists from Yelp by category and location. Get name, phone, website, address and rating for every matching business.

## Input

```json
{
  "searchQueries": [
    "plumbers"
  ],
  "searchLocations": [
    "Austin, TX"
  ],
  "businessUrls": [
    {
      "url": "https://www.yelp.com/biz/the-old-fashioned-madison"
    }
  ],
  "maxResultsPerSearch": 50
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "avg_rating": {
    "label": "Average Rating",
    "format": "number"
  },
  "review_count": {
    "label": "Review Count",
    "format": "integer"
  },
  "price_range": {
    "label": "Price Range",
    "format": "string"
  },
  "phone": {
    "label": "Phone",
    "format": "string"
  }
}
```

## About this Actor

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