制定具競爭力的價格

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

詳情請參閱「關於價格競爭力報表」。

你的帳戶必須符合基本資格規定,而且你必須確定,你或任何第三方以符合《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

執行

按一下「執行」,在 API Explorer 中試用範例。按一下「執行」後,請在要求網址中,將商家 ID 預留位置更新為自己的商家 ID。您可以修改查詢。如要使用 API 探索工具,完整查詢必須保留在一行。

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

{
  "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"
      }
    }
  ]
}