瞭解市場

您可以透過市場洞察報表查看 Google 的零售資料,進而瞭解目前的市場。這類資料包括暢銷產品和品牌、具競爭力的價格點、特價建議,以及所屬產業的競爭情況資訊。

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

找出暢銷商品

您可以透過暢銷商品報表查看 Google 上當前的暢銷產品和品牌,以及產品動態饋給目前是否含有這些項目。

這項熱銷程度資料是以 Google 產品類別和國家/地區為分類依據,可協助您決定哪些新產品與品牌需要補貨。這可協助您透過歷來資料找出季節性趨勢,並找出預算或出價提高對產品和品牌有利。

產品

查詢 BestSellersProductClusterView 來查看 Google 上的暢銷產品。

以下範例可用來查看暢銷產品。如要提出要求,請將下列 Merchant Center Query Language 陳述式傳遞至 accounts.reports.search 方法:

SELECT
  reportDate,
  reportGranularity,
  reportCountryCode,
  reportCategoryId,
  rank,
  previousRank,
  relativeDemand,
  previousRelativeDemand,
  relativeDemandChange,
  title,
  brand,
  categoryL1,
  categoryL2,
  categoryL3,
  variantGtins,
  inventoryStatus,
  brandInventoryStatus
FROM BestSellersProductClusterView
WHERE reportDate = '<var class="edit">2022-10-10</var>'
  AND reportGranularity = '<var class="edit">WEEKLY</var>'
  AND reportCountryCode = '<var class="edit">US</var>'
  AND reportCategoryId = <var class="edit">166</var>
ORDER BY rank

您可以變更 WHERE 子句中的值,針對其他日期、精細程度、國家/地區和類別自訂報表。

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

{
  "results": [
    {
      "bestSellersProductClusterView": {
        "reportDate": "2022-10-10",
        "reportGranularity": "WEEKLY",
        "reportCountryCode": "US",
        "reportCategoryId": "166",
        "rank": "1",
        "previousRank": "1",
        "relativeDemand": "VERY_HIGH",
        "previousRelativeDemand": "VERY_HIGH",
        "relativeDemandChange": "FLAT",
        "title": "Ugg Shoes Ugg Tasman",
        "brand": "UGG",
        "categoryL1": "Apparel & Accessories",
        "categoryL2": "Shoes",
        "categoryL3": "",
        "variantGtins":
            ["00737872992873", "00737872992880", "00737872992866"],
        "inventoryStatus": "NOT_IN_INVENTORY",
        "brandInventoryStatus": "NOT_IN_INVENTORY"
      }
    },
    {
      "bestSellersProductClusterView": {
        "reportDate": "2022-10-10",
        "reportGranularity": "WEEKLY",
        "reportCountryCode": "US",
        "reportCategoryId": "166",
        "rank": "2",
        "previousRank": "8",
        "relativeDemand": "VERY_HIGH",
        "previousRelativeDemand": "HIGH",
        "relativeDemandChange": "RISER",
        "title": "UGG Women's s Classic Mini",
        "brand": "UGG",
        "categoryL1": "Apparel & Accessories",
        "categoryL2": "Shoes",
        "categoryL3": "",
        "variantGtins":
            ["00194715081314", "00194715081246", "00194715081321"],
        "inventoryStatus": "NOT_IN_INVENTORY",
        "brandInventoryStatus": "NOT_IN_INVENTORY"
      }
    },
    {
      "bestSellersProductClusterView": {
        "reportDate": "2022-10-10",
        "reportGranularity": "WEEKLY",
        "reportCountryCode": "US",
        "reportCategoryId": "166",
        "rank": "3",
        "previousRank": "2",
        "relativeDemand": "VERY_HIGH",
        "previousRelativeDemand": "VERY_HIGH",
        "relativeDemandChange": "FLAT",
        "title": "Crocs Classic",
        "brand": "Crocs",
        "categoryL1": "Apparel & Accessories",
        "categoryL2": "Shoes",
        "categoryL3": "",
        "variantGtins":
            ["00887350811209", "00191448903852", "00191448769090"],
        "inventoryStatus": "NOT_IN_INVENTORY",
        "brandInventoryStatus": "OUT_OF_STOCK"
      }
    }
  ]
}

公司行號

查詢 BestSellersBrandView 來查看 Google 上的暢銷品牌。

以下範例可用來查看暢銷品牌。如要提出要求,請將下列 Merchant Center Query Language 陳述式傳遞至 accounts.reports.search 方法:

SELECT
  reportDate,
  reportGranularity,
  reportCountryCode,
  reportCategoryId,
  rank,
  previousRank,
  relativeDemand,
  previousRelativeDemand,
  relativeDemandChange,
  brand
FROM BestSellersBrandView
WHERE reportDate = '<var class="edit">2022-10-10</var>'
  AND reportGranularity = '<var class="edit">WEEKLY</var>'
  AND reportCountryCode = '<var class="edit">US</var>'
  AND reportCategoryId = <var class="edit">166</var>
ORDER BY rank

您可以變更 WHERE 子句中的值,針對其他日期、精細程度、國家/地區和類別自訂報表。

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

{
  "results": [
    {
      "bestSellersBrandView": {
        "reportDate": "2022-10-10",
        "reportGranularity": "WEEKLY",
        "reportCountryCode": "US",
        "reportCategoryId": "166",
        "rank": "1",
        "previousRank": "1",
        "relativeDemand": "VERY_HIGH",
        "previousRelativeDemand": "VERY_HIGH",
        "relativeDemandChange": "FLAT",
        "brand": "Nike"
      }
    },
    {
      "bestSellersBrandView": {
        "reportDate": "2022-10-10",
        "reportGranularity": "WEEKLY",
        "reportCountryCode": "US",
        "reportCategoryId": "166",
        "rank": "2",
        "previousRank": "2",
        "relativeDemand": "HIGH",
        "previousRelativeDemand": "HIGH",
        "relativeDemandChange": "FLAT",
        "brand": "SHEIN"
      }
    },
    {
      "bestSellersBrandView": {
        "reportDate": "2022-10-10",
        "reportGranularity": "WEEKLY",
        "reportCountryCode": "US",
        "reportCategoryId": "166",
        "rank": "3",
        "previousRank": "4",
        "relativeDemand": "HIGH",
        "previousRelativeDemand": "HIGH",
        "relativeDemandChange": "FLAT",
        "brand": "adidas"
      }
    }
  ]
}

價格具競爭力

您可以透過價格競爭力報表瞭解其他零售商對您銷售的同款產品訂定的價格。

如要查看依據預測效能為產品訂定的價格建議,請參閱「改善定價」。

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

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

SELECT
  id,
  title,
  brand,
  price,
  reportCountryCode,
  benchmarkPrice
FROM PriceCompetitivenessProductView

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

{
  "results": [
    {
      "priceCompetitivenessProductView": {
        "id": "en~US~12345",
        "title": "UGG Women's s Classic Mini",
        "brand": "UGG",
        "price" {
          "amountMicros": "124990000",
          "currencyCode": "USD"
        },
        "reportCountryCode": "US",
        "benchmarkPrice" {
          "amountMicros": "119922291",
          "currencyCode": "USD"
        }
      }
    },
    {
      "priceCompetitivenessProductView": {
        "id": "en~US~12346",
        "title": "Nike React Infinity Run Flyknit 2",
        "brand": "Nike",
        "price" {
          "amountMicros": "119990000",
          "currencyCode": "USD"
        },
        "reportCountryCode": "US",
        "benchmarkPrice" {
          "amountMicros": "173436840",
          "currencyCode": "USD"
        }
      }
    },
    {
      "priceCompetitivenessProductView": {
        "id": "en~US~12347",
        "title": "New Balance 327 White Trainers",
        "brand": "New Balance",
        "price" {
          "amountMicros": "84990000",
          "currencyCode": "USD"
        },
        "reportCountryCode": "US",
        "benchmarkPrice" {
          "amountMicros": "85459050",
          "currencyCode": "USD"
        }
      }
    }
  ]
}