시장 통계 보고서를 사용하여 현재 시장을 파악하는 데 도움이 되는 Google의 소매업 데이터를 볼 수 있습니다. 이 데이터에는 다음이 포함됩니다.
- 베스트셀러 제품 및 브랜드
- 경쟁력 있는 가격대
- 할인가 추천
- 업계의 경쟁 환경에 관한 정보
계정이 최소 자격 요건을 충족해야 하며, 본인 또는 제3자가 판매자 센터 계정에서 내보낸 시장 통계 데이터를 사용할 때에는 판매자 센터 이용약관을 준수해야 합니다.
베스트셀러 확인
베스트셀러 보고서를 사용하여 현재 Google에서 가장 많이 판매되는 제품과 브랜드를 확인하고, 내 제품 피드에 해당 제품과 브랜드가 등록되어 있는지 확인할 수 있습니다.
인기도를 보여주는 이러한 데이터는 Google 제품 카테고리 및 국가별로 그룹화되어 있어 새로운 제품 및 브랜드 입고를 결정하는 데 도움이 됩니다. 과거 데이터를 활용하여 계절적인 트렌드를 정확히 읽을 수 있고, 예산이나 입찰가를 높임으로써 실적 개선이 기대되는 제품과 브랜드를 파악하는 데에도 도움이 됩니다.
제품
best_sellers_product_cluster_view에 대해 질문하여 Google에서 가장 많이 판매된 제품을 확인하세요.
베스트셀러 제품을 보려면 다음 판매자 센터 쿼리 언어 문을 accounts.reports.search 메서드에 전달하세요.
SELECT
report_date,
report_granularity,
report_country_code,
report_category_id,
rank,
previous_rank,
relative_demand,
previous_relative_demand,
relative_demand_change,
title,
brand,
category_l1,
category_l2,
category_l3,
variant_gtins,
inventory_status,
brand_inventory_status
FROM best_sellers_product_cluster_view
WHERE report_date = '2022-10-10'
AND report_granularity = 'WEEKLY'
AND report_country_code = 'US'
AND report_category_id = 166
ORDER BY rank
WHERE 절의 값을 변경하여 다른 날짜, 세분화, 국가, 카테고리에 맞게 보고서를 맞춤설정할 수 있습니다.
다음은 이전 쿼리의 샘플 응답입니다.
{
"results": [
{
"bestSellersProductClusterView": {
"reportDate": "2022-10-10",
"reportGranularity": "WEEKLY",
"reportCountryCode": "US",
"reportCategoryId": "166",
"rank": "1",
"previousRank": "1",
"relativeDemand": "VERY_HIGH",
"previousRelativeDemand": "VERY_HIGH",
"relativeDemandChange": "FLAT",
"title": "Ugg Shoes Ugg Tasman",
"brand": "UGG",
"categoryL1": "Apparel & Accessories",
"categoryL2": "Shoes",
"categoryL3": "",
"variantGtins":
["00737872992873", "00737872992880", "00737872992866"],
"inventoryStatus": "NOT_IN_INVENTORY",
"brandInventoryStatus": "NOT_IN_INVENTORY"
}
},
{
"bestSellersProductClusterView": {
"reportDate": "2022-10-10",
"reportGranularity": "WEEKLY",
"reportCountryCode": "US",
"reportCategoryId": "166",
"rank": "2",
"previousRank": "8",
"relativeDemand": "VERY_HIGH",
"previousRelativeDemand": "HIGH",
"relativeDemandChange": "RISER",
"title": "UGG Women's s Classic Mini",
"brand": "UGG",
"categoryL1": "Apparel & Accessories",
"categoryL2": "Shoes",
"categoryL3": "",
"variantGtins":
["00194715081314", "00194715081246", "00194715081321"],
"inventoryStatus": "NOT_IN_INVENTORY",
"brandInventoryStatus": "NOT_IN_INVENTORY"
}
},
{
"bestSellersProductClusterView": {
"reportDate": "2022-10-10",
"reportGranularity": "WEEKLY",
"reportCountryCode": "US",
"reportCategoryId": "166",
"rank": "3",
"previousRank": "2",
"relativeDemand": "VERY_HIGH",
"previousRelativeDemand": "VERY_HIGH",
"relativeDemandChange": "FLAT",
"title": "Crocs Classic",
"brand": "Crocs",
"categoryL1": "Apparel & Accessories",
"categoryL2": "Shoes",
"categoryL3": "",
"variantGtins":
["00887350811209", "00191448903852", "00191448769090"],
"inventoryStatus": "NOT_IN_INVENTORY",
"brandInventoryStatus": "OUT_OF_STOCK"
}
}
]
}
쿼리에 사용할 수 있는 필드에 대한 자세한 내용은 bestSellersProductClusterView 테이블의 필드를 참고하세요.
브랜드
best_sellers_brand_view을 쿼리하여 Google에서 가장 많이 판매된 브랜드를 확인합니다.
베스트셀러 브랜드를 보려면 다음 Merchant Center Query Language 문을 accounts.reports.search 메서드에 전달합니다.
SELECT
report_date,
report_granularity,
report_country_code,
report_category_id,
rank,
previous_rank,
relative_demand,
previous_relative_demand,
relative_demand_change,
brand
FROM best_sellers_brand_view
WHERE report_date = '2022-10-10'
AND report_granularity = 'WEEKLY'
AND report_country_code = 'US'
AND report_category_id = 166
ORDER BY rank
WHERE 절의 값을 변경하여 다른 날짜, 세분화, 국가, 카테고리에 맞게 보고서를 맞춤설정할 수 있습니다.
다음은 이전 쿼리의 샘플 응답입니다.
{
"results": [
{
"bestSellersBrandView": {
"reportDate": "2022-10-10",
"reportGranularity": "WEEKLY",
"reportCountryCode": "US",
"reportCategoryId": "166",
"rank": "1",
"previousRank": "1",
"relativeDemand": "VERY_HIGH",
"previousRelativeDemand": "VERY_HIGH",
"relativeDemandChange": "FLAT",
"brand": "Nike"
}
},
{
"bestSellersBrandView": {
"reportDate": "2022-10-10",
"reportGranularity": "WEEKLY",
"reportCountryCode": "US",
"reportCategoryId": "166",
"rank": "2",
"previousRank": "2",
"relativeDemand": "HIGH",
"previousRelativeDemand": "HIGH",
"relativeDemandChange": "FLAT",
"brand": "SHEIN"
}
},
{
"bestSellersBrandView": {
"reportDate": "2022-10-10",
"reportGranularity": "WEEKLY",
"reportCountryCode": "US",
"reportCategoryId": "166",
"rank": "3",
"previousRank": "4",
"relativeDemand": "HIGH",
"previousRelativeDemand": "HIGH",
"relativeDemandChange": "FLAT",
"brand": "adidas"
}
}
]
}
쿼리에 사용할 수 있는 필드에 대한 자세한 내용은 bestSellersBrandView 테이블의 필드를 참고하세요.
가격 경쟁력 높이기
가격 경쟁력 보고서를 사용하여 다른 소매업체가 내가 판매하는 제품에 어떤 가격을 책정하고 있는지 확인할 수 있습니다.
예측된 실적을 기반으로 자체 제품의 가격을 책정하는 방법에 관한 추천을 확인하려면 가격 개선을 참고하세요.
price_competitiveness_product_view에 쿼리하여 다른 소매업체가 내가 판매하는 제품에 어떤 가격을 책정하고 있는지 알아봅니다.
가격 경쟁력 데이터를 보려면 다음 Merchant Center Query Language 문을 accounts.reports.search 메서드에 전달하세요.
SELECT
id,
title,
brand,
price,
report_country_code,
benchmark_price
FROM price_competitiveness_product_view
다음은 이전 쿼리의 샘플 응답입니다.
{
"results": [
{
"priceCompetitivenessProductView": {
"id": "en~US~12345",
"title": "UGG Women's s Classic Mini",
"brand": "UGG",
"price" {
"amountMicros": "124990000",
"currencyCode": "USD"
},
"reportCountryCode": "US",
"benchmarkPrice" {
"amountMicros": "119922291",
"currencyCode": "USD"
}
}
},
{
"priceCompetitivenessProductView": {
"id": "en~US~12346",
"title": "Nike React Infinity Run Flyknit 2",
"brand": "Nike",
"price" {
"amountMicros": "119990000",
"currencyCode": "USD"
},
"reportCountryCode": "US",
"benchmarkPrice" {
"amountMicros": "173436840",
"currencyCode": "USD"
}
}
},
{
"priceCompetitivenessProductView": {
"id": "en~US~12347",
"title": "New Balance 327 White Trainers",
"brand": "New Balance",
"price" {
"amountMicros": "84990000",
"currencyCode": "USD"
},
"reportCountryCode": "US",
"benchmarkPrice" {
"amountMicros": "85459050",
"currencyCode": "USD"
}
}
}
]
}
쿼리에 사용할 수 있는 필드에 대한 자세한 내용은 priceCompetitivenessProductView 테이블의 필드를 참고하세요.