ระบุแบรนด์ยอดนิยม

คุณสามารถใช้รายงานสินค้าขายดีเพื่อดูแบรนด์ที่ขายดีที่สุดบน Google Shopping และในโฆษณา Shopping คุณสามารถใช้ข้อมูลจากรายงานนี้เพื่อทำความเข้าใจว่าแบรนด์ใดมีประสิทธิภาพดีใน Google และปัจจุบันคุณมีแบรนด์ดังกล่าวหรือไม่

ดูเกี่ยวกับรายงานสินค้าขายดีสำหรับข้อมูลเพิ่มเติม

บัญชีของคุณต้องมีคุณสมบัติตามข้อกำหนดของการได้รับสิทธิ์ขั้นต่ำ รวมถึงการใช้งานข้อมูล Market Insights ของคุณหรือของบุคคลที่สามซึ่งส่งออกจากบัญชี Merchant Center เป็นไปตามข้อกำหนดและเงื่อนไขของ Merchant Center

ค้นหา BestSellersBrandView เพื่อดูแบรนด์ที่ขายดีที่สุดบน Google

ต่อไปนี้คือตัวอย่างที่คุณใช้ในการดูแบรนด์ที่ขายดีที่สุดได้ หากต้องการส่งคำขอ ให้ส่งคำสั่งภาษาของคำค้นหาของ Merchant Center ต่อไปนี้ไปยังเมธอด 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, brand.name
FROM BestSellersBrandView
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 คำขอ คุณสามารถแก้ไขคำค้นหาได้ คำค้นหาแบบเต็มต้องอยู่ในบรรทัดเดียวเพื่อใช้งานร่วมกับโปรแกรมสำรวจ 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"
      }
      "brand": {
        "name": "Nike",
      }
    },
    {
      "bestSellers": {
        "reportDate": "2022-10-10",
        "reportGranularity": "WEEKLY",
        "countryCode": "US",
        "categoryId": "166"
        "rank": "2",
        "previousRank": "2",
        "relativeDemand": "HIGH",
        "previousRelativeDemand": "HIGH",
        "relativeDemandChange": "FLAT"
      }
      "brand": {
        "name": "SHEIN"
      }
    },
    {
      "bestSellers": {
        "reportDate": "2022-10-10",
        "reportGranularity": "WEEKLY",
        "countryCode": "US",
        "categoryId": "166"
        "rank": "3",
        "previousRank": "4",
        "relativeDemand": "HIGH",
        "previousRelativeDemand": "HIGH",
        "relativeDemandChange": "FLAT"
      }
      "brand": {
        "name": "adidas"
      }
    }
  ]
}