マーケット インサイト レポートを使用すると、現在の市場を把握するのに役立つ Google の小売データを表示できます。このデータには、ベストセラー商品やブランド、競争力のある価格帯、セール価格の候補、業界の競合状況に関する情報が含まれます。
アカウントは最低限の資格要件を満たしている必要があります。また、Merchant Center アカウントからエクスポートしたマーケット インサイト データをご自身または第三者が利用する際は、Merchant Center の利用規約を遵守する必要があります。
ベストセラーを特定する
ベストセラー レポートを使用すると、Google で現在最も売れている商品とブランド、およびそれらが現在商品フィードに掲載されているかどうかを確認できます。
人気度のデータは Google 商品カテゴリと国別にグループ化されるため、新しく仕入れる商品とブランドを検討する際の参考にできます。また、過去のデータを活用して季節的なトレンドを把握したり、予算や入札単価を上げることでパフォーマンス向上が見込まれる商品とブランドを特定したりするのにも役立ちます。
商品
best_sellers_product_cluster_view
をクエリすると、Google で最も売れている商品を確認できます。
以下は、ベストセラー商品を表示するために使用できるサンプルです。リクエストを実行するには、次の Merchant Center クエリ言語ステートメントを 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 = '<var class="edit">2022-10-10</var>'
AND report_granularity = '<var class="edit">WEEKLY</var>'
AND report_country_code = '<var class="edit">US</var>'
AND report_category_id = <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"
}
}
]
}
ブランド
best_sellers_brand_view
をクエリすると、Google で最も売れているブランドを確認できます。
以下は、ベストセラー ブランドを表示するために使用できるサンプルです。リクエストを実行するには、次の Merchant Center クエリ言語ステートメントを 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 = '<var class="edit">2022-10-10</var>'
AND report_granularity = '<var class="edit">WEEKLY</var>'
AND report_country_code = '<var class="edit">US</var>'
AND report_category_id = <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"
}
}
]
}
競争力のある価格を設定
価格競争力レポートを使用すると、お客様が販売する商品と同じものを他の販売店がいくらで販売しているかを確認できます。
予測されるパフォーマンスに基づいて独自の商品の価格設定方法に関する提案を確認するには、価格設定を改善するをご覧ください。
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"
}
}
}
]
}