# Compare product prices across retailers on Google Shopping

**Use case:** 

Compare product prices across retailers on Google Shopping. Each row returns the product title, price, retailer, rating, and link for side by side comparison.

## Input

```json
{
  "searchTerms": [
    "wireless headphones"
  ],
  "country": "us",
  "language": "en",
  "maxResultsPerSearch": 20
}
```

## Output

```json
{
  "title": {
    "label": "Product Title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "string"
  },
  "source": {
    "label": "Retailer",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "link": {
    "label": "Product Link",
    "format": "string"
  },
  "searchQuery": {
    "label": "Search Query",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Shopping Lite API](https://apify.com/johnvc/google-shopping-lite-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/google-shopping-lite-api) to learn more, explore other use cases, and run it yourself.