# Scrape Chain & Franchise Location Data by URL

**Use case:** 

Benchmark a brand across its outlets. Paste several Yelp location URLs of a chain or franchise and get a full record per location: title, rating, reviewCount, rating_breakdown, priceLevel, categories, fullAddress, city, state, zipcode, phoneNumber, hours, website and isClaimed. Compare how each branch performs side by side. Add or swap URLs to cover any brand.

## Input

```json
{
  "Urls": [
    "https://www.yelp.com/biz/shake-shack-madison-square-park-new-york-3",
    "https://www.yelp.com/biz/five-guys-queens-11",
    "https://www.yelp.com/biz/the-halal-guys-new-york-2"
  ]
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "link"
  },
  "title": {
    "label": "Business Title",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "text"
  },
  "reviewCount": {
    "label": "Review Count",
    "format": "text"
  },
  "isClaimed": {
    "label": "Claimed Status",
    "format": "text"
  },
  "priceLevel": {
    "label": "Price Level",
    "format": "text"
  },
  "categories": {
    "label": "Categories",
    "format": "text"
  },
  "fullAddress": {
    "label": "Full Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "zipcode": {
    "label": "Zip Code",
    "format": "text"
  },
  "phoneNumber": {
    "label": "Phone Number",
    "format": "text"
  },
  "images": {
    "label": "Images",
    "format": "array"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "hours": {
    "label": "Business Hours",
    "format": "object"
  },
  "businessOwnerName": {
    "label": "Owner Name",
    "format": "text"
  },
  "about": {
    "label": "About",
    "format": "text"
  },
  "reviewhighlights": {
    "label": "Review Highlights",
    "format": "array"
  },
  "businessServices": {
    "label": "Services",
    "format": "object"
  },
  "specialties": {
    "label": "Specialties",
    "format": "text"
  },
  "year_established": {
    "label": "Year Established",
    "format": "text"
  },
  "popular_items": {
    "label": "Popular Items",
    "format": "array"
  },
  "menu_url": {
    "label": "Menu URL",
    "format": "link"
  },
  "questions_answers": {
    "label": "Q&A",
    "format": "array"
  },
  "videos": {
    "label": "Videos",
    "format": "array"
  },
  "health_inspections": {
    "label": "Health Inspections",
    "format": "array"
  },
  "verified_licenses": {
    "label": "Verified Licenses",
    "format": "array"
  },
  "service_areas": {
    "label": "Service Areas",
    "format": "array"
  },
  "number_of_locations": {
    "label": "Number of Locations (brand pages)",
    "format": "text"
  },
  "rating_breakdown": {
    "label": "Rating Breakdown (brand pages)",
    "format": "object"
  },
  "locations": {
    "label": "Locations (brand pages)",
    "format": "array"
  },
  "yelp_biz_id": {
    "label": "Yelp Business ID",
    "format": "text"
  },
  "timestamp": {
    "label": "Timestamp",
    "format": "text"
  },
  "is_page_not_found": {
    "label": "Is Page Not Found",
    "format": "boolean"
  },
  "status": {
    "label": "Status",
    "format": "text"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/delicious_zebu/yelp-business-info-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
