查看购物趋势

购物趋势报告会根据与商品目录相关的主题的搜索需求,提供有关您的商品的建议和数据分析。

您可以通过主题趋势报告了解主题在一段时间内在 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 趋势数据的常见问题解答说明的趋势热门搜索排行榜