# Get a Product's Ratings and Reviews From Google

**Use case:** 

Search a product on Google and get its rating and review count as JSON, with title, brand, and price_range for each match. Pay per product.

## Input

```json
{
  "query": "running shoes",
  "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.