# Find Yelp Business by Name

**Use case:** 

Find a known Yelp business by name and city with ratings, categories, source URL, and search rank for quick profile checks.

## Input

```json
{
  "searchQueries": [
    "Gary Danko"
  ],
  "searchLocations": [
    "San Francisco, CA"
  ],
  "startUrls": [],
  "maxResultsPerSearch": 5,
  "maxPagesPerSearch": 1,
  "sortBy": "recommended"
}
```

## Output

```json
{
  "businessId": {
    "label": "businessId",
    "format": "string"
  },
  "alias": {
    "label": "alias",
    "format": "string"
  },
  "name": {
    "label": "name",
    "format": "string"
  },
  "url": {
    "label": "url",
    "format": "string"
  },
  "alternateNames": {
    "label": "alternateNames",
    "format": "array"
  },
  "isAd": {
    "label": "isAd",
    "format": "boolean"
  },
  "isClaimed": {
    "label": "isClaimed",
    "format": "boolean"
  },
  "isClosed": {
    "label": "isClosed",
    "format": "boolean"
  },
  "isTemporarilyClosed": {
    "label": "isTemporarilyClosed",
    "format": "boolean"
  },
  "addressLine1": {
    "label": "addressLine1",
    "format": "string"
  },
  "addressLine2": {
    "label": "addressLine2",
    "format": "string"
  },
  "city": {
    "label": "city",
    "format": "string"
  },
  "state": {
    "label": "state",
    "format": "string"
  },
  "postalCode": {
    "label": "postalCode",
    "format": "string"
  },
  "country": {
    "label": "country",
    "format": "string"
  },
  "latitude": {
    "label": "latitude",
    "format": "number"
  },
  "longitude": {
    "label": "longitude",
    "format": "number"
  },
  "neighborhoods": {
    "label": "neighborhoods",
    "format": "array"
  },
  "categories": {
    "label": "categories",
    "format": "array"
  },
  "businessType": {
    "label": "businessType",
    "format": "string"
  },
  "cuisine": {
    "label": "cuisine",
    "format": "array"
  },
  "phone": {
    "label": "phone",
    "format": "string"
  },
  "website": {
    "label": "website",
    "format": "string"
  },
  "priceRange": {
    "label": "priceRange",
    "format": "string"
  },
  "rating": {
    "label": "rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "reviewCount",
    "format": "number"
  },
  "hours": {
    "label": "hours",
    "format": "array"
  },
  "specialHours": {
    "label": "specialHours",
    "format": "array"
  },
  "amenities": {
    "label": "amenities",
    "format": "array"
  },
  "businessHighlights": {
    "label": "businessHighlights",
    "format": "array"
  },
  "about": {
    "label": "about",
    "format": "string"
  },
  "specialties": {
    "label": "specialties",
    "format": "string"
  },
  "history": {
    "label": "history",
    "format": "string"
  },
  "yearEstablished": {
    "label": "yearEstablished",
    "format": "number"
  },
  "healthScore": {
    "label": "healthScore",
    "format": "string"
  },
  "menuUrl": {
    "label": "menuUrl",
    "format": "string"
  },
  "reservationUrl": {
    "label": "reservationUrl",
    "format": "string"
  },
  "primaryPhoto": {
    "label": "primaryPhoto",
    "format": "string"
  },
  "images": {
    "label": "images",
    "format": "array"
  },
  "mediaCount": {
    "label": "mediaCount",
    "format": "number"
  },
  "searchQuery": {
    "label": "searchQuery",
    "format": "string"
  },
  "searchLocation": {
    "label": "searchLocation",
    "format": "string"
  },
  "searchRank": {
    "label": "searchRank",
    "format": "number"
  },
  "sourceUrl": {
    "label": "sourceUrl",
    "format": "string"
  },
  "collectedAt": {
    "label": "collectedAt",
    "format": "string"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

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

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
