查看购物趋势

购物趋势报告 根据搜索需求提供有关您的商品的建议和数据分析 找到与您的广告资源相关的主题

您可以使用主题趋势报告来了解某个主题的热门程度, Google 搜索随时间变化的情况,包括未来 13 周的预测价值, 以及与其他主题相比,它的受欢迎程度如何 Google 搜索。这些趋势可能有助于您决定何时使用付费服务 和 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 趋势常见问题解答 数据“趋势”热门搜索排行榜 说明