# Verify brand locations from public Yelp pages

**Use case:** 

Pull public profile records for known business pages so a team can verify addresses, phones, hours, and ratings.

## Input

```json
{
  "searchQuery": "pizza",
  "location": "New York, NY",
  "startUrls": [
    {
      "url": "https://www.yelp.com/biz/the-coffee-bean-and-tea-leaf-los-angeles-10"
    }
  ],
  "maxResults": 10,
  "includeReviews": false,
  "maxReviewsPerBusiness": 5,
  "proxyType": "residential"
}
```

## Output

```json
{
  "business_name": {
    "label": "Business Name",
    "format": "string"
  },
  "rating": {
    "label": "Star Rating",
    "format": "number"
  },
  "review_count": {
    "label": "Review Count",
    "format": "integer"
  },
  "price_range": {
    "label": "Price Range",
    "format": "string"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "address": {
    "label": "Full Address",
    "format": "string"
  },
  "phone": {
    "label": "Phone Number",
    "format": "string"
  },
  "website": {
    "label": "Website URL",
    "format": "string"
  },
  "is_claimed": {
    "label": "Is Claimed",
    "format": "boolean"
  },
  "data_source": {
    "label": "Data Source",
    "format": "string"
  },
  "yelp_url": {
    "label": "Yelp URL",
    "format": "string"
  },
  "scraped_at": {
    "label": "Scraped At",
    "format": "string"
  }
}
```

## About this Actor

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