# Google Place ID to Details – Bulk Place ID Lookup

**Use case:** 

Convert Google Place IDs or Feature IDs into full place details — name, address, rating, hours, phone and website. Bulk lookups supported.

## Input

```json
{
  "placeUrls": [
    {
      "url": "https://maps.app.goo.gl/KZLn9FA3aokoiVaP8"
    }
  ],
  "placeIds": [
    "ChIJifIePKtZwokRVZ-UdRGkZzs",
    "ChIJN1t_tDeuEmsRUsoyG83frY4"
  ],
  "maxPlacesPerSearch": 20,
  "language": "en",
  "country": "us"
}
```

## Output

```json
{
  "name": {
    "label": "Place Name",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review Count",
    "format": "integer"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "phone": {
    "label": "Phone",
    "format": "string"
  },
  "website": {
    "label": "Website",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Maps Place Details Scraper](https://apify.com/beatanalytics/google-maps-place-details-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/beatanalytics/google-maps-place-details-scraper) to learn more, explore other use cases, and run it yourself.