상위 제품 식별

베스트셀러 보고서를 사용하여 Google 쇼핑 및 쇼핑 광고의 베스트셀러 제품을 볼 수 있습니다. 이 보고서의 정보를 통해 Google에서 실적이 좋은 제품을 파악하고 현재 해당 제품을 보유하고 있는지 여부를 파악할 수 있습니다.

자세한 내용은 베스트셀러 보고서 정보를 참고하세요.

계정이 최소 자격 요건을 충족해야 하며 본인 또는 제3자가 판매자 센터 계정에서 내보낸 시장 통계 데이터를 사용할 때는 판매자 센터 이용약관을 준수해야 합니다.

Google의 베스트셀러 제품을 보려면 BestSellersProductClusterView에 쿼리하세요.

다음은 베스트셀러 제품을 보는 데 사용할 수 있는 샘플입니다. 요청하려면 reports.search 메서드에 다음 판매자 센터 쿼리 언어 문을 전달합니다.

SELECT
  best_sellers.report_date, best_sellers.report_granularity,
  best_sellers.country_code, best_sellers.category_id,
  best_sellers.rank, best_sellers.previous_rank,
  best_sellers.relative_demand, best_sellers.previous_relative_demand,
  best_sellers.relative_demand_change,
  product_cluster.title, product_cluster.brand, product_cluster.category_l1,
  product_cluster.category_l2, product_cluster.category_l3, 
  product_cluster.variant_gtins, product_cluster.inventory_status, 
  product_cluster.brand_inventory_status
FROM BestSellersProductClusterView
WHERE best_sellers.report_date = '2022-10-10'
  AND best_sellers.report_granularity = 'WEEKLY'
  AND best_sellers.country_code = 'US'
  AND best_sellers.category_id = 166
ORDER BY best_sellers.rank

WHERE 절의 값을 변경하여 다른 날짜, 세부사항, 국가, 카테고리에 대한 보고서를 맞춤설정할 수 있습니다.

실행

실행을 클릭하여 API 탐색기에서 샘플을 사용해 보세요. 실행을 클릭한 후 요청 URL에서 판매자 ID 자리표시자를 자체 판매자 ID로 업데이트합니다. 쿼리를 수정할 수 있습니다. API 탐색기에서 작동하려면 전체 쿼리를 한 줄로 유지해야 합니다.

다음은 이전 쿼리의 샘플 응답입니다.

{
  "results": [
    {
      "bestSellers": {
        "reportDate": "2022-10-10",
        "reportGranularity": "WEEKLY",
        "countryCode": "US",
        "categoryId": "166"
        "rank": "1",
        "previousRank": "1",
        "relativeDemand": "VERY_HIGH",
        "previousRelativeDemand": "VERY_HIGH",
        "relativeDemandChange": "FLAT"
      }
      "productCluster": {
        "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"
      }
    },
    {
      "bestSellers": {
        "reportDate": "2022-10-10",
        "reportGranularity": "WEEKLY",
        "countryCode": "US",
        "categoryId": "166"
        "rank": "2",
        "previousRank": "8",
        "relativeDemand": "VERY_HIGH",
        "previousRelativeDemand": "HIGH",
        "relativeDemandChange": "RISER"
      }
      "productCluster": {
        "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"
      }
    },
    {
      "bestSellers": {
        "reportDate": "2022-10-10",
        "reportGranularity": "WEEKLY",
        "countryCode": "US",
        "categoryId": "166"
        "rank": "3",
        "previousRank": "2",
        "relativeDemand": "VERY_HIGH",
        "previousRelativeDemand": "VERY_HIGH",
        "relativeDemandChange": "FLAT"
      }
      "productCluster": {
        "title": "Crocs Classic",
        "brand": "Crocs",
        "categoryL1": "Apparel & Accessories",
        "categoryL2": "Shoes",
        "categoryL3": "",
        "variantGtins":
            ["00887350811209", "00191448903852", "00191448769090"],
        "inventoryStatus": "NOT_IN_INVENTORY",
        "brandInventoryStatus": "OUT_OF_STOCK"
      }
    }
  ]
}