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 bán lẻ từ Google. Dữ liệu này có thể giúp bạn nắm được thị trường. 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, giá cạnh tranh điểm, đề xuất giá ưu đãi và thông tin về bối cảnh cạnh tranh cho 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 mã bán chạy nhất để xem chỉ số các sản phẩm và thương hiệu bán chạy nhất trên Google, cũng như cho dù bạn đang đưa chúng vào nguồn cấp dữ liệu sản phẩm của bạn.

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 nên nhập kho sản phẩm và thương hiệu mới nào. Dữ liệu này có thể giúp bạn xác định xu hướng theo mùa bằng cách sử dụng dữ liệu trong quá khứ, đồng thời xác định các sản phẩm và những 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

Cụm từ tìm kiếm BestSellersProductClusterView để xem các sản phẩm bán chạy nhất trên Google.

Sau đây là mẫu bạn có thể sử dụng để xem các sản phẩm bán chạy nhất. Để đưa ra yêu cầu, chuyển Truy vấn Merchant Center sau Ngôn ngữ cho thuộc tính accounts.reports.search phương thức:

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 khác, thông tin chi tiết, quốc gia và danh mục.

Dưới đây là phản hồi mẫu cho 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

Cụm từ tìm kiếm BestSellersBrandView để xem các thương hiệu bán chạy nhất trên Google.

Sau đây là ví dụ về các thương hiệu bán chạy nhất. Để đưa ra yêu cầu, chuyển Truy vấn Merchant Center sau Ngôn ngữ cho thuộc tính accounts.reports.search phương thức:

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 khác, thông tin chi tiết, quốc gia và danh mục.

Dưới đây là phản hồi mẫu cho 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ạnh tranh

Bạn có thể sử dụng thuộc tính price [giá] để xem thông tin cách những nhà bán lẻ khác định giá cho các sản phẩm giống như sản phẩm bạn bán.

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

Cụm từ tìm kiếm PriceCompetitivenessProductView để tìm hiểu cách những nhà bán lẻ khác đặt giá cho các sản phẩm giống như sản phẩm mà bạn bán.

Sau đây là một ví dụ mẫu mà bạn có thể dùng để xem dữ liệu sức cạnh tranh về giá. Để giúp hãy chuyển Truy vấn Merchant Center sau đây Ngôn ngữ cho thuộc tính accounts.reports.search phương thức:

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

Dưới đây là phản hồi mẫu cho 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"
        }
      }
    }
  ]
}