# Find San Francisco Coffee Businesses and Reviews

**Use case:** 

Find San Francisco coffee businesses with Yelp ratings, contact details and full reviews. Export verified business IDs and review text to JSON or CSV.

## Input

```json
{
  "mode": "search",
  "searchQuery": "coffee",
  "location": "San Francisco, CA",
  "maxBusinesses": 3,
  "maxReviewsPerBusiness": 3,
  "includeSentiment": true,
  "includeLeadScore": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "UNBLOCKER"
    ]
  }
}
```

## Output

```json
{
  "business_id": {
    "label": "Business ID",
    "format": "text"
  },
  "business_name": {
    "label": "Business",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "review_count": {
    "label": "Yelp reviews",
    "format": "number"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "price_range": {
    "label": "Price",
    "format": "text"
  },
  "lead_score": {
    "label": "Lead score",
    "format": "number"
  },
  "reviews_count": {
    "label": "Reviews pulled",
    "format": "number"
  },
  "url": {
    "label": "Yelp URL",
    "format": "link"
  },
  "scraped_at": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Yelp Business & Reviews Scraper](https://apify.com/benthepythondev/yelp-intelligence-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/benthepythondev/yelp-intelligence-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/benthepythondev/yelp-intelligence-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`).
