# Get Rich Product Detail Pages From a Google Search

**Use case:** 

Search Google and get the rich product detail page for each result as JSON: title, brand, price_range, rating, and review count. Pay per product.

## Input

```json
{
  "query": "wireless earbuds",
  "gl": "us",
  "hl": "en",
  "maxResultsPerQuery": 3
}
```

## Output

```json
{
  "result_type": {
    "label": "Result Type",
    "format": "string"
  },
  "query": {
    "label": "Query",
    "format": "string"
  },
  "position": {
    "label": "Position",
    "format": "integer"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "price_range": {
    "label": "Price Range",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviews": {
    "label": "Reviews",
    "format": "number"
  },
  "product_link": {
    "label": "Product Link",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Immersive Product API | Product Pages for E-Commerce](https://apify.com/johnvc/google-immersive-product-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/google-immersive-product-api) to learn more, explore other use cases, and run it yourself.