查看購物趨勢

購物趨勢報表 根據搜尋需求提供產品相關建議和深入分析資訊 找出廣告空間的相關主題

主題趨勢報表可協助您瞭解特定主題的人氣 Google 搜尋的歷來變化,包括未來 13 週的預測值 以及其熱門程度與感興趣的其他主題的比較結果 Google 搜尋。您可以根據這些趨勢,判斷何時適合使用付費服務 和 Google 自然搜尋工具,提高使用者 能協助尋找符合網路需求的產品 或類似的商品

請參閱「關於購物」 趨勢 可能不準確或不適當

如需暢銷產品或品牌的相關資訊,請參閱暢銷商品 報表

您的帳戶必須符合資格規定,並確認 使用或任何第三方的購物主題趨勢資料時,一律符合 Merchant Center 條款及細則。你必須在 ,查看該類別的趨勢。上傳產品後 您最多可能要過 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
      }
    }
  ]

瞭解詳情

請參閱 Google 搜尋趨勢的常見問題 資料趨勢排行榜 範例