掌握競爭局勢

競爭曝光率 報表 也就是產品類別層級的競爭情況,並採取行動 根據購物廣告的展示曝光次數提高曝光率 和隨機搜尋結果如需特定產品和品牌的相關資訊,請參閱 暢銷商品 報表

你的帳戶必須符合基本資格規定,而且必須 您或任何第三方的「競爭曝光率」資料使用方式 Merchant Center 條款和 限制條件

查看哪些報表表格 欄位 也能透過 Merchant API 使用

競爭曝光率資料

「競爭曝光率」資料按國家/地區分類,Google 產品 類別和流量來源。

您必須在 WHERE 子句中 競爭曝光率查詢您可以變更 WHERE 子句中的值 自訂日期、流量來源、國家/地區和類別的報表。

如果查詢包含多個國家/地區和類別值,可能需要較長的執行時間。 或逾時。

查看曝光率相近的商家

您可以查詢「CompetitiveVisibilityCompetitorView」,查看符合下列條件的商家: 獲得類似自家業務的曝光次數

請看看以下範例。如要提出要求,請傳遞下列 Merchant Center 查詢 我們要針對 accounts.reports.search敬上 方法:

SELECT
  reportCountryCode,
  reportcategoryId,
  trafficSource,
  domain,
  isYourDomain,
  rank,
  adsOrganicRatio,
  pageOverlapRate,
  higherPositionRate,
  relativeVisibility
FROM CompetitiveVisibilityCompetitorView
WHERE date BETWEEN '2023-06-02' AND '2023-06-27'
  AND reportCountryCode = 'US'
  AND reportCategoryId = 536
  AND trafficSource = '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
      }
    },
  ]
}

查看曝光率最高的商家

你可以查詢「CompetitiveVisibilityTopMerchantView」,瞭解有哪些商家 在特定類別的 Google 服務中獲得最多曝光次數 業務比較。

請看看以下範例。如要提出要求,請傳送下列 Merchant Center 查詢 Language 陳述式 accounts.reports.search敬上 方法:

SELECT
  reportCountryCode,
  reportCategoryId,
  trafficSource,
  domain,
  isYourDomain,
  rank,
  adsOrganicRatio,
  pageOverlapRate,
  higher_position_rate
FROM CompetitiveVisibilityTopMerchantView
WHERE date BETWEEN '2022-08-01' AND '2022-09-01'
  AND reportCountryCode = 'US'
  AND reportCategoryId = 100
  AND trafficSource = '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
      }
    },
  ]
}

比較曝光度與類別基準

您可以查詢「CompetitiveVisibilityBenchmarkView」來查看 曝光次數的變化趨勢 (與其他賣家的平均趨勢相比)。

請看看以下範例。如要提出要求,請傳遞下列 Merchant Center 查詢 我們要針對 accounts.reports.search敬上 方法:

SELECT
  reportCountryCode,
  reportCategoryId,
  trafficSource,
  date,
  yourDomainVisibilityTrend,
  categoryBenchmarkVisibilityTrend
FROM CompetitiveVisibilityBenchmarkView
WHERE date BETWEEN '2022-09-01' AND '2022-09-07'
  AND reportCountryCode = 'US'
  AND reportCategoryId = 100
  AND trafficSource = '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
      }
    },
  ]
}