สำรวจภาพรวมทางการแข่งขัน
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
รายงานการแสดงผลเทียบกับคู่แข่งช่วยให้คุณเข้าใจภาพรวมทางการแข่งขันในระดับหมวดหมู่ผลิตภัณฑ์และดำเนินการปรับปรุงการแสดงผล โดยอิงตามการแสดงผลที่เกิดขึ้นจากโฆษณา Shopping และข้อมูลที่แสดงในการค้นหาทั่วไป ดูข้อมูลเกี่ยวกับผลิตภัณฑ์และแบรนด์ที่เฉพาะเจาะจงได้ในรายงานสินค้าขายดี
บัญชีของคุณต้องมีคุณสมบัติตามข้อกำหนดของการได้รับสิทธิ์ขั้นต่ำ รวมถึงการใช้งานข้อมูลระดับการมองเห็นของคู่แข่งของคุณหรือของบุคคลที่สามต้องเป็นไปตามข้อกำหนดและเงื่อนไขของ Merchant Center
ดูว่าตารางและช่องการรายงานใดบ้างที่ใช้ได้กับ Merchant API
ข้อมูลการแสดงผลเทียบกับคู่แข่ง
ข้อมูลระดับการมองเห็นของคู่แข่งจะจัดกลุ่มตามประเทศ หมวดหมู่ผลิตภัณฑ์ Google และแหล่งที่มาของการเข้าชม
คุณต้องระบุค่าประเทศและหมวดหมู่ในประโยค WHERE
สําหรับคําค้นหาระดับการมองเห็นที่แข่งขันกันทั้งหมด คุณสามารถเปลี่ยนค่าในประโยค WHERE
เพื่อปรับแต่งรายงานสำหรับวันที่ แหล่งที่มาของการเข้าชม ประเทศ และหมวดหมู่
การค้นหาที่มีค่าประเทศและหมวดหมู่หลายค่าอาจใช้เวลานานขึ้นหรือหมดเวลา
ดูธุรกิจที่มีการแสดงผลคล้ายกัน
คุณสามารถค้นหา competitive_visibility_competitor_view
เพื่อดูธุรกิจที่มีจํานวนการแสดงผลใกล้เคียงกับธุรกิจของคุณ
ตัวอย่างมีดังนี้ หากต้องการส่งคำขอ ให้ส่งคำสั่งภาษาการค้นหาของ 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
}
},
]
}
ดูข้อมูลเพิ่มเติมเกี่ยวกับฟิลด์ที่ใช้ค้นหาได้ที่ฟิลด์ในตาราง competitiveVisibilityCompetitorView
ดูธุรกิจที่มีการแสดงผลสูงสุด
คุณสามารถค้นหา 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
}
},
]
}
ดูข้อมูลเพิ่มเติมเกี่ยวกับฟิลด์ที่ใช้ค้นหาได้ที่ฟิลด์ในตาราง competitiveVisibilityTopMerchantView
เปรียบเทียบการแสดงผลของคุณกับคู่แข่งในหมวดหมู่เดียวกัน
คุณสามารถค้นหา competitive_visibility_benchmark_view
เพื่อดูแนวโน้มจำนวนการแสดงผลเมื่อเวลาผ่านไปเทียบกับแนวโน้มเฉลี่ยของผู้ขายรายอื่นๆ
ตัวอย่างมีดังนี้ หากต้องการส่งคำขอ ให้ส่งคำสั่งภาษาการค้นหาของ 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
}
},
]
}
ดูข้อมูลเพิ่มเติมเกี่ยวกับฟิลด์ที่ใช้ค้นหาได้ที่ฟิลด์ในตาราง competitiveVisibilityBenchmarkView
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-08-08 UTC
[null,null,["อัปเดตล่าสุด 2025-08-08 UTC"],[[["\u003cp\u003eThe Competitive Visibility report helps you understand your product category's competitive landscape on Google Shopping and organic listings, allowing you to improve your visibility based on impression data.\u003c/p\u003e\n"],["\u003cp\u003eYou can identify businesses with similar and highest visibility, compare your visibility to the category benchmark, and customize reports by date, traffic source, country, and category using the Merchant Center Query Language.\u003c/p\u003e\n"],["\u003cp\u003eTo access Competitive Visibility data, your account must meet eligibility requirements and comply with Merchant Center terms and conditions.\u003c/p\u003e\n"],["\u003cp\u003eData is grouped by country, Google product category, and traffic source, requiring specification of country and category values in queries.\u003c/p\u003e\n"],["\u003cp\u003eThree distinct views—\u003ccode\u003ecompetitive_visibility_competitor_view\u003c/code\u003e, \u003ccode\u003ecompetitive_visibility_top_merchant_view\u003c/code\u003e, and \u003ccode\u003ecompetitive_visibility_benchmark_view\u003c/code\u003e—offer insights into different aspects of competitive visibility, each with its own set of queryable fields.\u003c/p\u003e\n"]]],["The competitive visibility report analyzes product category performance, focusing on Shopping ads and organic listings. Users query data using `competitive_visibility_competitor_view`, `competitive_visibility_top_merchant_view`, or `competitive_visibility_benchmark_view`. These queries, specifying country, category, and traffic source, reveal businesses with similar visibility, top-performing businesses, and visibility trends relative to category benchmarks. Customizable reports adjust for dates, traffic, and categories, enabling insight into the competitive landscape.\n"],null,["# Explore your competitive landscape\n\nThe [competitive visibility\nreport](//support.google.com/merchants/answer/11366442) helps you understand\nyour competitive landscape on a product category level, and take action to\nimprove your visibility based on displayed impressions from your Shopping ads\nand organic listings. For information on specific products and brands, see the\n[best sellers\nreports](/merchant/api/guides/reports/understand-the-market#identify_best-sellers).\n\nYour account must meet minimum eligibility requirements, and you must ensure\nthat your use, or any third party's use, of Competitive visibility data complies\nwith the [Merchant Center terms and\nconditions](//support.google.com/merchants/answer/12628444).\n\nSee which reporting [tables and\nfields](/merchant/api/reference/rest/reports_v1/accounts.reports/search) are\navailable with the Merchant API.\n\nCompetitive visibility data\n---------------------------\n\nCompetitive visibility data is grouped by country, [Google product\ncategory](//support.google.com/merchants/answer/6324436) and traffic source.\n\nYou must specify country and category values in a `WHERE` clause for all\ncompetitive visibility queries. You can change the values in the `WHERE` clause\nto customize the report for dates, traffic sources, countries, and categories.\n\nQueries with multiple country and category values might take longer to execute,\nor time out.\n\nView businesses with similar visibility\n---------------------------------------\n\nYou can query `competitive_visibility_competitor_view` to view businesses with a\nsimilar number of impressions to your business.\n\nHere's a sample. To make the request, pass the following Merchant Center Query\nLanguage statement to the\n[`accounts.reports.search`](/merchant/api/reference/rest/reports_v1/accounts.reports/search)\nmethod: \n\n SELECT\n report_country_code,\n report_category_id,\n traffic_source,\n domain,\n is_your_domain,\n rank,\n ads_organic_ratio,\n page_overlap_rate,\n higher_position_rate,\n relative_visibility\n FROM competitive_visibility_competitor_view\n WHERE date BETWEEN '2023-06-02' AND '2023-06-27'\n AND report_country_code = 'US'\n AND report_category_id = 536\n AND traffic_source = 'ADS'\n ORDER BY rank\n\nYou can change the values in the `WHERE` clause to customize the report for\nother dates, traffic sources, countries, and\n[categories](//support.google.com/merchants/answer/6324436).\n\nHere's a sample response from the preceding query: \n\n {\n \"results\": [\n {\n \"competitiveVisibilityCompetitorView\": {\n \"reportCountryCode\": \"US\",\n \"reportCategoryId\": \"536\",\n \"trafficSource\": \"ADS\",\n \"domain\": \"examplepetstore.com\",\n \"isYourDomain\": false,\n \"rank\": \"4\",\n \"adsOrganicRatio\": 8,\n \"pageOverlapRate\": 0.19,\n \"higherPositionRate\": 0.46,\n \"relativeVisibility\": 0.5\n }\n },\n {\n \"competitiveVisibilityCompetitorView\": {\n \"reportCountryCode\": \"US\",\n \"reportCategoryId\": \"536\",\n \"trafficSource\": \"ADS\",\n \"domain\": \"example.com\",\n \"isYourDomain\": true,\n \"rank\": \"5\",\n \"adsOrganicRatio\": 30,\n \"pageOverlapRate\": 1,\n \"higherPositionRate\": 0,\n \"relativeVisibility\": 0\n }\n },\n ]\n }\n\nFor more information about the fields available for query, see the [Fields in `competitiveVisibilityCompetitorView` table](/merchant/api/reference/rest/reports_v1/accounts.reports#CompetitiveVisibilityCompetitorView.FIELDS).\n\nView businesses with highest visibility\n---------------------------------------\n\nYou can query `competitive_visibility_top_merchant_view` to see which businesses\nare getting the most impressions across Google in a specific category, and how\nyour business compares.\n\nHere's a sample. To make the request, pass the following [Merchant Center Query\nLanguage](/merchant/api/guides/reports/query-language) statement to the\n[`accounts.reports.search`](/merchant/api/reference/rest/reports_v1/accounts.reports/search)\nmethod: \n\n SELECT\n report_country_code,\n report_category_id,\n traffic_source,\n domain,\n is_your_domain,\n rank,\n ads_organic_ratio,\n page_overlap_rate,\n higher_position_rate\n FROM competitive_visibility_top_merchant_view\n WHERE date BETWEEN '2022-08-01' AND '2022-09-01'\n AND report_country_code = 'US'\n AND report_category_id = 100\n AND traffic_source = 'ORGANIC'\n ORDER BY rank\n\nHere's a sample response from the preceding query: \n\n {\n \"results\": [\n {\n \"competitiveVisibilityTopMerchantView\": {\n \"reportCountryCode\": \"US\",\n \"reportCategoryId\": \"100\",\n \"trafficSource\": \"ORGANIC\",\n \"domain\": \"examplepetstore.com\",\n \"isYourDomain\": false,\n \"rank\": \"1\",\n \"adsOrganicRatio\": 0.2,\n \"pageOverlapRate\": 0.3,\n \"higherPositionRate\": 0.45\n }\n },\n {\n \"competitiveVisibilityTopMerchantView\": {\n \"reportCountryCode\": \"US\",\n \"reportCategoryId\": \"100\",\n \"trafficSource\": \"ORGANIC\",\n \"domain\": \"example.com\",\n \"isYourDomain\": false,\n \"rank\": \"2\",\n \"adsOrganicRatio\": 5,\n \"pageOverlapRate\": 0.67,\n \"higherPositionRate\": 0.89\n }\n },\n ]\n }\n\nFor more information about the fields available for query, see the [Fields in `competitiveVisibilityTopMerchantView` table](/merchant/api/reference/rest/reports_v1/accounts.reports#CompetitiveVisibilityTopMerchantView.FIELDS).\n\nCompare your visibility to the category benchmark\n-------------------------------------------------\n\nYou can query `competitive_visibility_benchmark_view` to see how your number of\nimpressions trends over time compared to the average trend of other sellers.\n\nHere's a sample. To make the request, pass the following Merchant Center Query\nLanguage statement to the\n[`accounts.reports.search`](/merchant/api/reference/rest/reports_v1/accounts.reports/search)\nmethod: \n\n SELECT\n report_country_code,\n report_category_id,\n traffic_source,\n date,\n your_domain_visibility_trend,\n category_benchmark_visibility_trend\n FROM competitive_visibility_benchmark_view\n WHERE date BETWEEN '2022-09-01' AND '2022-09-07'\n AND report_country_code = 'US'\n AND report_category_id = 100\n AND traffic_source = 'ORGANIC'\n ORDER BY date\n\nHere's a sample response from the preceding query: \n\n {\n \"results\": [\n {\n \"competitiveVisibilityBenchmarkView\": {\n \"date\": {\n \"year\": 2022,\n \"month\": 9,\n \"day\": 1\n },\n \"reportCountryCode\": \"US\",\n \"reportCategoryId\": \"100\",\n \"trafficSource\": \"ORGANIC\",\n \"yourDomainVisibilityTrend\": 0,\n \"categoryBenchmarkVisibilityTrend\": 0\n }\n },\n {\n \"competitiveVisibilityBenchmarkView\": {\n \"date\": {\n \"year\": 2022,\n \"month\": 9,\n \"day\": 2\n },\n \"reportCountryCode\": \"US\",\n \"reportCategoryId\": \"100\",\n \"trafficSource\": \"ORGANIC\",\n \"yourDomainVisibilityTrend\": 0.3,\n \"categoryBenchmarkVisibilityTrend\": -0.15\n }\n },\n ]\n }\n\nFor more information about the fields available for query, see the [Fields in `competitiveVisibilityBenchmarkView` table](/merchant/api/reference/rest/reports_v1/accounts.reports#CompetitiveVisibilityBenchmarkView.FIELDS)."]]