Hiểu thị trường

Bạn có thể sử dụng báo cáo Phân tích thị trường để xem dữ liệu về ngành bán lẻ của Google. Dữ liệu này có thể giúp bạn nắm được thị trường hiện tại. Dữ liệu này bao gồm các thương hiệu và sản phẩm bán chạy nhất, điểm giá cạnh tranh, các đề xuất về giá ưu đãi và thông tin về bối cảnh cạnh tranh trong ngành của bạn.

Tài khoản của bạn phải đáp ứng các yêu cầu tối thiểu và bạn phải đảm bảo rằng việc bạn hoặc bất kỳ bên thứ ba nào sử dụng dữ liệu của chương trình Phân tích thị trường được xuất từ tài khoản Merchant Center của bạn đều phải tuân thủ các điều khoản và điều kiện của Merchant Center.

Xác định sản phẩm bán chạy nhất

Bạn có thể sử dụng báo cáo sản phẩm và thương hiệu bán chạy nhất để xem các sản phẩm và thương hiệu bán chạy nhất hiện tại trên Google, cũng như liệu bạn hiện có mang những sản phẩm và thương hiệu đó vào nguồn cấp dữ liệu sản phẩm của mình hay không.

Dữ liệu về độ phổ biến này được nhóm theo danh mục sản phẩm của Google và theo quốc gia để giúp bạn quyết định những sản phẩm và thương hiệu mới nên nhập kho. Dữ liệu này có thể giúp bạn xác định các xu hướng theo mùa bằng cách sử dụng dữ liệu trong quá khứ, cũng như xác định những sản phẩm và thương hiệu sẽ hưởng lợi từ việc tăng ngân sách hoặc giá thầu.

Sản phẩm

Truy vấn BestSellersProductClusterView để xem các sản phẩm bán chạy nhất trên Google.

Bạn có thể dùng mẫu này để xem các sản phẩm bán chạy nhất. Để đưa ra yêu cầu, hãy chuyển câu lệnh sau đây Ngôn ngữ truy vấn của Merchant Center đến phương thức 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

Bạn có thể thay đổi các giá trị trong mệnh đề WHERE để tuỳ chỉnh báo cáo cho ngày, chi tiết, quốc gia và danh mục khác.

Dưới đây là phản hồi mẫu từ truy vấn trước:

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

Thương hiệu

Truy vấn BestSellersBrandView để xem các thương hiệu bán chạy nhất trên Google.

Bạn có thể sử dụng mẫu sau đây để xem các thương hiệu bán chạy nhất. Để đưa ra yêu cầu, hãy chuyển câu lệnh sau đây Ngôn ngữ truy vấn của Merchant Center đến phương thức 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

Bạn có thể thay đổi các giá trị trong mệnh đề WHERE để tuỳ chỉnh báo cáo cho ngày, chi tiết, quốc gia và danh mục khác.

Dưới đây là phản hồi mẫu từ truy vấn trước:

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

Giá cả cạnh tranh

Bạn có thể sử dụng báo cáo sức cạnh tranh về giá để xem các nhà bán lẻ khác đang định giá như thế nào cho các sản phẩm như sản phẩm mà bạn bán.

Để xem các đề xuất về cách định giá sản phẩm của bạn dựa trên hiệu suất dự đoán, hãy xem phần Cải thiện giá.

Truy vấn PriceCompetitivenessProductView để tìm hiểu cách các nhà bán lẻ khác định giá cho các sản phẩm giống như sản phẩm mà bạn bán.

Bạn có thể dùng mẫu sau đây để xem dữ liệu sức cạnh tranh về giá. Để đưa ra yêu cầu, hãy chuyển câu lệnh Ngôn ngữ truy vấn Merchant Center sau đây đến phương thức accounts.reports.search:

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

Dưới đây là phản hồi mẫu từ truy vấn trước:

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