市場を理解する

マーケット インサイト レポートを使用すると、現在の市場を把握するのに役立つ Google の小売データを確認できます。このデータには以下のものが含まれます。

  • ベストセラー商品とブランド
  • 競争力のある価格帯
  • セール価格の候補
  • 業界の競合状況に関する情報

アカウントは最低限の資格要件を満たしている必要があります。また、Merchant Center アカウントからエクスポートしたマーケット インサイト データをご自身または第三者が利用する際は、Merchant Center の利用規約を遵守する必要があります。

ベストセラーを特定する

ベストセラー レポートを使用すると、Google で現在最も売れている商品とブランドを確認できます。また、それらが商品フィードに含まれているかどうかも確認できます。

人気度のデータは Google 商品カテゴリと国別にグループ化されるため、新しく仕入れる商品とブランドを検討する際の参考にできます。過去のデータを活用して季節的なトレンドを把握したり、予算や入札単価を上げることでパフォーマンス向上が見込まれる商品とブランドを特定したりするのにも役立ちます。

プロダクト

クエリ best_sellers_product_cluster_view を使用して、Google でのベストセラー商品を確認します。

売れ筋商品を把握するために使用できるサンプルを以下に示します。リクエストを行うには、次の Merchant Center Query Language ステートメントを accounts.reports.search メソッドに渡します。

SELECT
  report_date,
  report_granularity,
  report_country_code,
  report_category_id,
  rank,
  previous_rank,
  relative_demand,
  previous_relative_demand,
  relative_demand_change,
  title,
  brand,
  category_l1,
  category_l2,
  category_l3,
  variant_gtins,
  inventory_status,
  brand_inventory_status
FROM best_sellers_product_cluster_view
WHERE report_date = '2022-10-10'
  AND report_granularity = 'WEEKLY'
  AND report_country_code = 'US'
  AND report_category_id = 166
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"
      }
    }
  ]
}

クエリに使用できるフィールドの詳細については、bestSellersProductClusterView テーブルのフィールドをご覧ください。

ブランド

best_sellers_brand_view をクエリして、Google で最も売れているブランドを確認します。

ベストセラーのブランドを確認するために使用できるサンプルを次に示します。リクエストを行うには、次の Merchant Center Query Language ステートメントを accounts.reports.search メソッドに渡します。

SELECT
  report_date,
  report_granularity,
  report_country_code,
  report_category_id,
  rank,
  previous_rank,
  relative_demand,
  previous_relative_demand,
  relative_demand_change,
  brand
FROM best_sellers_brand_view
WHERE report_date = '2022-10-10'
  AND report_granularity = 'WEEKLY'
  AND report_country_code = 'US'
  AND report_category_id = 166
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"
      }
    }
  ]
}

クエリに使用できるフィールドの詳細については、bestSellersBrandView テーブルのフィールドをご覧ください。

競争力のある価格を設定する

価格競争力レポートを使用すると、お客様が販売する商品と同じものが他の販売店でいくらで売られているかを確認できます。

予測されるパフォーマンスに基づいて自社商品の価格設定に関する提案を確認するには、価格設定を改善するをご覧ください。

price_competitiveness_product_view をクエリして、お客様が販売する商品と同じものが他の販売店でいくらで売られているかを確認します。

価格競争力データを表示するために使用できるサンプルを次に示します。リクエストを行うには、次の Merchant Center Query Language ステートメントを accounts.reports.search メソッドに渡します。

SELECT
  id,
  title,
  brand,
  price,
  report_country_code,
  benchmark_price
FROM price_competitiveness_product_view

上記のクエリからのレスポンスの例を次に示します。

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

クエリに使用できるフィールドの詳細については、priceCompetitivenessProductView テーブルのフィールドをご覧ください。