쇼핑 트렌드 보기

쇼핑 트렌드 보고서는 인벤토리 관련 주제에 대한 검색 수요를 기반으로 제품에 대한 추천 및 통계를 제공합니다.

주제 트렌드 보고서를 사용하면 향후 13주간의 예측값을 비롯해 Google 검색에서 주제의 인기도를 시간 경과에 따라 파악할 수 있으며, Google 검색에서 쇼핑객이 관심을 갖는 다른 주제와 인기도를 비교할 수 있습니다. 이러한 트렌드를 사용하면 유료 및 무료 Google 도구를 사용해야 하는 경우에 대한 결정을 내려 사용자가 필요로 할 때 내 제품 또는 이와 유사한 제품을 온라인에서 찾을 가능성을 높일 수 있습니다.

자세한 내용은 쇼핑 트렌드 정보를 참고하세요.

판매량이 가장 많은 제품 또는 브랜드에 대한 정보는 베스트셀러 보고서를 참고하세요.

계정이 자격 요건을 충족해야 하며, 본인 또는 제3자가 쇼핑 주제 트렌드 데이터를 사용할 때에는 판매자 센터 이용약관을 준수해야 합니다. 특정 카테고리의 추세를 확인하려면 해당 카테고리에 제품이 2개 이상 있어야 합니다. 제품을 업로드한 후 해당 카테고리의 트렌드를 사용할 수 있게 되기까지 최대 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 트렌드 데이터 관련 FAQ트렌드 인기 차트 설명을 참고하세요.