# 批量监控竞品价格(谷歌购物)

**Use case:** 

一次运行监控多个商品关键词的谷歌购物价格: 零售商、价格、评分与链接, 定时运行即可追踪价格变化。按商品计费, 无固定月费。

## Input

```json
{
  "searchTerms": [
    "机械键盘",
    "无线鼠标"
  ],
  "country": "us",
  "language": "en",
  "maxResultsPerSearch": 40
}
```

## 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.