查看购物趋势

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

您可以使用主题趋势报告了解某个主题在一段时间内在 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 趋势数据的常见问题解答对 Google 趋势热门搜索图表的说明