# Yelp Directory Export – Bulk Local Business Listings

**Use case:** 

Export a local business directory from Yelp across multiple categories and cities at once. All combinations searched in a single run.

## Input

```json
{
  "searchQueries": [
    "bakeries",
    "florists",
    "barbers"
  ],
  "searchLocations": [
    "Boston, MA",
    "Cambridge, MA"
  ],
  "businessUrls": [
    {
      "url": "https://www.yelp.com/biz/the-old-fashioned-madison"
    }
  ],
  "maxResultsPerSearch": 30
}
```

## 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.