# Enrich a Coffee Shop List With Yelp Details

**Use case:** 

Turn a list of coffee shops into full profiles: phone, address, website, hours, rating, review count, categories, amenities, and photos.

## Input

```json
{
  "place_ids": [
    "coava-coffee-roasters-portland",
    "case-study-coffee-portland-2",
    "keeper-coffee-portland"
  ],
  "full_menu": false,
  "business_alert": false,
  "yelp_domain": "www.yelp.com"
}
```

## Output

```json
{
  "place_id": {
    "label": "Place ID",
    "format": "text"
  },
  "result_timestamp": {
    "label": "Result timestamp"
  },
  "place_results": {
    "label": "Place results"
  }
}
```

## About this Actor

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