制定具競爭力的價格

如有其他零售商與你銷售相同產品,你可以透過價格競爭力報表瞭解其他零售商訂定的產品價格。您可以參考這項資訊來設定產品定價或廣告出價。

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

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

查詢 PriceCompetitivenessProductView,瞭解其他零售商針對您銷售的產品訂定的價格。

您可以使用以下範例查看價格競爭力資料。如要提出要求,請將下列 Merchant Center 查詢語言陳述式傳遞至 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"
      }
    }
  ]
}