ショッピングのトレンド レポートは、お客様の在庫に関連するトピックに対する検索需要に基づいて、商品に関する最適化案や分析情報を表示します。
トピックのトレンド
トピックのトレンド レポートを使用すると、Google 検索でのトピックの人気度を時系列で把握できます。これには、今後 13 週間の予測値や、Google 検索で買い物客が関心を持っている他のトピックと比較した人気度も含まれます。これらのトレンドは、ユーザーがオンラインでお客様の商品や類似の商品を検索しているときに商品が表示される可能性を高めるために、Google の有料ツールとオーガニック ツールをいつ使用するかについて決定を行う際に役立ちます。
詳しくは、ショッピング トレンドについてをご覧ください。
売れ筋の商品やブランドについては、ベストセラー レポートをご覧ください。
アカウントは資格要件を満たしている必要があります。また、ショッピング トピックのトレンド データを自身または第三者が利用する際は、Merchant Center の利用規約を遵守する必要があります。特定のカテゴリの傾向を確認するには、そのカテゴリに少なくとも 2 つの商品が必要です。商品をアップロードしてから、そのカテゴリのトレンドを利用できるようになるまでには、最長で 24 時間ほどかかることがあります。
Content API for Shopping で使用できるレポート テーブルとフィールドを確認します。
トピックの人気度とトレンドのデータを表示するために使用できるサンプルを次に示します。リクエストを行うには、次の Merchant Center Query Language ステートメントを reports.search
メソッドに渡します。
SELECT
topic_trends.customer_country_code,
topic_trends.topic,
topic_trends.date,
topic_trends.search_interest,
topic_trends.last7_days_search_interest,
topic_trends.last30_days_search_interest,
topic_trends.last90_days_search_interest,
topic_trends.last120_days_search_interest,
topic_trends.next7_days_search_interest
FROM TopicTrendsView
WHERE topic_trends.customer_country_code = 'US'
AND topic_trends.date BETWEEN '2023-07-01' AND '2023-07-03'
ORDER BY topic_trends.date DESC
上記のクエリからのレスポンスの例を次に示します。
"results": [
{
"topicTrends": {
"customerCountryCode": "US",
"topic": "Cell Phone Cases",
"date": {
"year": 2023,
"month": 7,
"day": 3
},
"searchInterest": 50.2,
"last7DaysSearchInterest": 49.5
"last30DaysSearchInterest": 51.1
"last90DaysSearchInterest": 50.7
"last120DaysSearchInterest": 49.3
"next7DaysSearchInterest": 60
}
},
{
"topicTrends": {
"customerCountryCode": "US",
"topic": "Cell Phones",
"date": {
"year": 2023,
"month": 7,
"day": 2
},
"searchInterest": 70.2,
"last7DaysSearchInterest": 69.8
"last30DaysSearchInterest": 71.4
"last90DaysSearchInterest": 70.6
"last120DaysSearchInterest": 69.0
"next7DaysSearchInterest": 70.1
}
},
{
"topicTrends": {
"customerCountryCode": "US",
"topic": "Wireless Speakers",
"date": {
"year": 2023,
"month": 7,
"day": 1
},
"searchInterest": 40.6,
"last7DaysSearchInterest": 41.4
"last30DaysSearchInterest": 40.6
"last90DaysSearchInterest": 40.3
"last120DaysSearchInterest": 39.8
"next7DaysSearchInterest": 41.1
}
}
]