쇼핑 트렌드 보고서 검색 수요에 따라 제품에 대한 추천 및 통계 제공 확인할 수 있습니다
주제 트렌드
주제 트렌드 보고서를 사용하면 특정 주제의 인기도를 파악할 수 있습니다. 향후 13주 동안의 예상 가치를 포함하여 시간에 따른 Google 검색 Google 웹사이트에서 쇼핑객이 관심을 보인 다른 주제와 비교하여 Google 검색 이러한 추세는 유료 콘텐츠 사용에 대한 판단을 내리는 데 도움이 될 수 있습니다. 자연 Google 도구를 활용하여 사용자가 광고주의 사이트를 볼 가능성을 또는 그와 유사한 제품을 온라인에서 찾을 수 있도록 합니다.
쇼핑 정보 보기 자세히 알아보려면 확인할 수 있습니다
최다 판매 제품 또는 브랜드에 대한 자세한 내용은 베스트셀러 보고서를 참조하세요.
계정이 자격 요건을 충족해야 하며 제3자의 쇼핑 주제 트렌드 데이터 사용은 판매자 센터 이용약관 한 카테고리에 제품이 2개 이상 있어야 합니다. 해당 카테고리의 트렌드를 확인할 수 있습니다. 제품을 업로드한 후 해당 카테고리의 트렌드를 사용할 수 있기까지 최대 24시간이 걸릴 수 있습니다.
어떤 보고서 표와 필드 쇼핑용 Content API를 통해 사용할 수 있습니다.
다음은 주제 인기도 및 트렌드 데이터를 확인하는 데 사용할 수 있는 샘플입니다. 이
다음 판매자 센터 쿼리 언어 문을
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
}
}
]