制定具競爭力的價格

你可以透過價格競爭力報表,瞭解其他零售商與你銷售的同款產品定價。為產品定價或廣告出價時,您可以使用這項資訊。

詳情請參閱「價格競爭力報表簡介」一文。

你的帳戶必須符合基本資格規定,而且你必須確定,你或任何第三方使用從 Merchant Center 帳戶匯出的「市場洞察」資料時,皆符合《Merchant Center 條款及細則》。

查詢 PriceCompetitivenessProductView,瞭解其他零售商的同款產品定價。

你可以透過以下範例查看價格競爭力資料。如要提出要求,請將下列 Merchant Center Query Language 陳述式傳遞至 reports.search 方法:

SELECT
  product_view.id, product_view.title, product_view.brand,
  product_view.price_micros, product_view.currency_code,
  price_competitiveness.country_code,
  price_competitiveness.benchmark_price_micros,
  price_competitiveness.benchmark_price_currency_code
FROM PriceCompetitivenessProductView

執行

請按一下「Run」(執行),試用 API Explorer 中的範例。按一下「Run」後,請在要求網址中將商家 ID 預留位置更新為您自己的商家 ID。您可以修改查詢。完整查詢必須留在一行,才能與 API Explorer 搭配使用。

以下是前述查詢的回應範例:

{
  "results": [
    {
      "productView": {
        "id": "online:en:US:12345",
        "title": "UGG Women's s Classic Mini",
        "brand": "UGG",
        "priceMicros": "124990000"
        "currencyCode": "USD"
      }
      "priceCompetitiveness": {
        "countryCode": "US",
        "benchmarkPriceMicros": "119922291",
        "benchmarkPriceCurrencyCode": "USD"
      }
    },
    {
      "productView": {
        "id": "online:en:US:12346",
        "title": "Nike React Infinity Run Flyknit 2",
        "brand": "Nike",
        "priceMicros": "119990000"
        "currencyCode": "USD"
      }
      "priceCompetitiveness": {
        "countryCode": "US",
        "benchmarkPriceMicros": "173436840",
        "benchmarkPriceCurrencyCode": "USD"
      }
    },
    {
      "productView": {
        "id": "online:en:US:12347",
        "title": "New Balance 327 White Trainers",
        "brand": "New Balance",
        "priceMicros": "84990000"
        "currencyCode": "USD"
      }
      "priceCompetitiveness": {
        "countryCode": "US",
        "benchmarkPriceMicros": "85459050",
        "benchmarkPriceCurrencyCode": "USD"
      }
    }
  ]
}