สำรวจภาพรวมทางการแข่งขัน

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

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

ดูว่าตารางและช่องการรายงานใดบ้างที่ใช้ได้กับ Merchant API

ข้อมูลการแสดงผลเทียบกับคู่แข่ง

ข้อมูลระดับการมองเห็นของคู่แข่งจะจัดกลุ่มตามประเทศ หมวดหมู่ผลิตภัณฑ์ Google และแหล่งที่มาของการเข้าชม

คุณต้องระบุค่าประเทศและหมวดหมู่ในประโยค WHERE สําหรับคําค้นหาระดับการมองเห็นที่แข่งขันกันทั้งหมด คุณสามารถเปลี่ยนค่าในประโยค WHERE เพื่อปรับแต่งรายงานสำหรับวันที่ แหล่งที่มาของการเข้าชม ประเทศ และหมวดหมู่

การค้นหาที่มีค่าประเทศและหมวดหมู่หลายค่าอาจใช้เวลานานขึ้นหรือหมดเวลา

ดูธุรกิจที่มีการแสดงผลคล้ายกัน

คุณสามารถค้นหา competitive_visibility_competitor_view เพื่อดูธุรกิจที่มีจํานวนการแสดงผลใกล้เคียงกับธุรกิจของคุณ

ตัวอย่างมีดังนี้ หากต้องการส่งคำขอ ให้ส่งคำสั่งภาษา Query Language ของ Merchant Center ต่อไปนี้ไปยังเมธอด accounts.reports.search

SELECT
  report_country_code,
  report_category_id,
  traffic_source,
  domain,
  is_your_domain,
  rank,
  ads_organic_ratio,
  page_overlap_rate,
  higher_position_rate,
  relative_visibility
FROM competitive_visibility_competitor_view
WHERE date BETWEEN '2023-06-02' AND '2023-06-27'
  AND report_country_code = 'US'
  AND report_category_id = 536
  AND traffic_source = 'ADS'
ORDER BY rank

คุณสามารถเปลี่ยนค่าในประโยค WHERE เพื่อปรับแต่งรายงานสำหรับวันที่ แหล่งที่มาของการเข้าชม ประเทศ และหมวดหมู่อื่นๆ ได้

ตัวอย่างการตอบกลับจากการค้นหาก่อนหน้ามีดังนี้

{
  "results": [
    {
      "competitiveVisibilityCompetitorView": {
        "reportCountryCode": "US",
        "reportCategoryId": "536",
        "trafficSource": "ADS",
        "domain": "examplepetstore.com",
        "isYourDomain": false,
        "rank": "4",
        "adsOrganicRatio": 8,
        "pageOverlapRate": 0.19,
        "higherPositionRate": 0.46,
        "relativeVisibility": 0.5
      }
    },
    {
      "competitiveVisibilityCompetitorView": {
        "reportCountryCode": "US",
        "reportCategoryId": "536",
        "trafficSource": "ADS",
        "domain": "example.com",
        "isYourDomain": true,
        "rank": "5",
        "adsOrganicRatio": 30,
        "pageOverlapRate": 1,
        "higherPositionRate": 0,
        "relativeVisibility": 0
      }
    },
  ]
}

ดูธุรกิจที่มีการแสดงผลสูงสุด

คุณสามารถค้นหา competitive_visibility_top_merchant_view เพื่อดูว่าธุรกิจใดได้รับการแสดงผลมากที่สุดใน Google ในหมวดหมู่ที่เฉพาะเจาะจง และเปรียบเทียบธุรกิจของคุณกับธุรกิจอื่นๆ ได้

ตัวอย่างมีดังนี้ หากต้องการส่งคำขอ ให้ส่งคำสั่ง Merchant Center Query Language ต่อไปนี้ไปยังเมธอด accounts.reports.search

SELECT
  report_country_code,
  report_category_id,
  traffic_source,
  domain,
  is_your_domain,
  rank,
  ads_organic_ratio,
  page_overlap_rate,
  higher_position_rate
FROM competitive_visibility_top_merchant_view
WHERE date BETWEEN '2022-08-01' AND '2022-09-01'
  AND report_country_code = 'US'
  AND report_category_id = 100
  AND traffic_source = 'ORGANIC'
ORDER BY rank

ตัวอย่างการตอบกลับจากการค้นหาก่อนหน้ามีดังนี้

{
  "results": [
    {
      "competitiveVisibilityTopMerchantView": {
        "reportCountryCode": "US",
        "reportCategoryId": "100",
        "trafficSource": "ORGANIC",
        "domain": "examplepetstore.com",
        "isYourDomain": false,
        "rank": "1",
        "adsOrganicRatio": 0.2,
        "pageOverlapRate": 0.3,
        "higherPositionRate": 0.45
      }
    },
    {
      "competitiveVisibilityTopMerchantView": {
        "reportCountryCode": "US",
        "reportCategoryId": "100",
        "trafficSource": "ORGANIC",
        "domain": "example.com",
        "isYourDomain": false,
        "rank": "2",
        "adsOrganicRatio": 5,
        "pageOverlapRate": 0.67,
        "higherPositionRate": 0.89
      }
    },
  ]
}

เปรียบเทียบการแสดงผลของคุณกับคู่แข่งในหมวดหมู่เดียวกัน

คุณสามารถค้นหา competitive_visibility_benchmark_view เพื่อดูแนวโน้มจำนวนการแสดงผลเมื่อเวลาผ่านไปเทียบกับแนวโน้มเฉลี่ยของผู้ขายรายอื่นๆ

ตัวอย่างมีดังนี้ หากต้องการส่งคำขอ ให้ส่งคำสั่งภาษา Query Language ของ Merchant Center ต่อไปนี้ไปยังเมธอด accounts.reports.search

SELECT
  report_country_code,
  report_category_id,
  traffic_source,
  date,
  your_domain_visibility_trend,
  category_benchmark_visibility_trend
FROM competitive_visibility_benchmark_view
WHERE date BETWEEN '2022-09-01' AND '2022-09-07'
  AND report_country_code = 'US'
  AND report_category_id = 100
  AND traffic_source = 'ORGANIC'
ORDER BY date

ตัวอย่างการตอบกลับจากการค้นหาก่อนหน้ามีดังนี้

{
  "results": [
    {
      "competitiveVisibilityBenchmarkView": {
        "date": {
          "year": 2022,
          "month": 9,
          "day": 1
        },
        "reportCountryCode": "US",
        "reportCategoryId": "100",
        "trafficSource": "ORGANIC",
        "yourDomainVisibilityTrend": 0,
        "categoryBenchmarkVisibilityTrend": 0
      }
    },
    {
      "competitiveVisibilityBenchmarkView": {
        "date": {
          "year": 2022,
          "month": 9,
          "day": 2
        },
        "reportCountryCode": "US",
        "reportCategoryId": "100",
        "trafficSource": "ORGANIC",
        "yourDomainVisibilityTrend": 0.3,
        "categoryBenchmarkVisibilityTrend": -0.15
      }
    },
  ]
}