查看購物趨勢

購物趨勢報表可根據與商品目錄相關的主題搜尋趨勢,提供產品相關建議和深入分析資料。

您可以使用主題趨勢報表,瞭解某個主題在 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 搜尋趨勢資料常見問題熱門排行榜說明