# 谷歌购物比价: 跨境电商选品必备

**Use case:** 

按关键词抓取谷歌购物商品: 标题、价格、零售商、评分、链接, 一行一个商品。跨境卖家比价选品、监控美国市场价格的低成本 API。

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