# Enrich a List of Yelp Businesses by Place ID

**Use case:** 

Turn a list of Yelp place IDs from a search into full business profiles: phone, website, hours, categories, and amenities for every business in one run.

## Input

```json
{
  "place_ids": [
    "gary-danko-san-francisco",
    "house-of-prime-rib-san-francisco",
    "zuni-cafe-san-francisco",
    "tartine-bakery-san-francisco"
  ],
  "full_menu": false,
  "business_alert": false,
  "yelp_domain": "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.