“购物趋势”报告会根据与商品目录相关的主题的搜索需求,提供有关您的商品的建议和数据分析。
主题趋势
您可以使用主题趋势报告来了解某个主题在 Google 搜索中的热度随时间的变化情况,包括未来 13 周的预测值,以及该主题的热度与 Google 搜索中购物者感兴趣的其他主题相比如何。这些趋势可以为您制定战略决策提供参考依据,有助于您明智地决定何时使用 Google 付费和自然搜索工具,让用户在网上搜索您的商品或类似商品时,更有可能看到您的商品。
如需了解详情,请参阅购物趋势简介。
如需了解畅销商品或品牌,请参阅畅销商品报告。
您的账号必须符合资格要求,并且您必须确保您或任何第三方在使用购物主题趋势数据时遵守 Merchant Center 条款及条件。您必须在特定类别中至少有两件商品,才能查看该类别的趋势。上传商品后,您可能需要等待 24 小时,才能查看相应类别的趋势。
了解哪些报告表和字段可通过 Content API for Shopping 获取。
以下是一个示例,您可以使用它来查看主题的热门程度和趋势数据。如需发出请求,请将以下 Merchant Center 查询语言语句传递给 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
}
}
]
了解详情
请参阅我们的有关 Google 趋势数据的常见问题解答以及“趋势热门排行榜”说明。