# Get a Yelp Health Inspection Score by Place ID

**Use case:** 

Fetch a restaurant's Yelp health inspection score by place ID, alongside name, rating, and address, returned as clean structured JSON.

## Input

```json
{
  "place_ids": [
    "gary-danko-san-francisco",
    "house-of-prime-rib-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.