쇼핑 트렌드 보기

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

주제 트렌드 보고서를 사용하면 시간 경과에 따른 Google 검색에서 특정 주제의 인기도(향후 13주 동안의 예상 가치 포함)를 파악하고 Google 검색에서 쇼핑객이 관심을 가질 만한 다른 주제와 비교하여 인기도를 파악할 수 있습니다. 이러한 트렌드는 유료 및 무료 Google 도구를 사용해야 하는 경우에 대한 결정을 내리는 데 도움이 될 수 있습니다. 그러면 사용자가 내 제품이나 유사한 제품을 온라인으로 검색할 때 해당 제품을 볼 가능성을 높일 수 있습니다.

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

최다 판매 제품 또는 브랜드에 대한 자세한 내용은 베스트셀러 보고서를 참고하세요.

계정이 자격요건을 충족해야 하며 본인 또는 제3자가 쇼핑 주제 트렌드 데이터를 사용할 때는 판매자 센터 이용약관을 준수해야 합니다. 해당 카테고리의 트렌드를 보려면 특정 카테고리에 제품이 2개 이상 있어야 합니다. 제품을 업로드한 후 해당 카테고리의 트렌드를 사용할 수 있기까지 최대 24시간이 걸릴 수 있습니다.

Content API for Shopping에서 사용할 수 있는 보고 표 및 필드를 확인하세요.

다음은 주제 인기도 및 트렌드 데이터를 확인하는 데 사용할 수 있는 샘플입니다. 요청하려면 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트렌드 인기 차트에 관한 설명을 참고하세요.