商品の価格競争力を高める

価格競争力レポートを使用すると、お客様の販売商品と同じものが他の販売店でいくらで売られているかを把握できます。この情報は、商品の価格設定や広告の入札を行うときに使用できます。

価格競争力について レポートをご覧ください。

アカウントは最低限の資格要件を満たしている必要があります。また、Merchant Center アカウントからエクスポートしたマーケット インサイト データをご自身または第三者が利用する際は、Merchant Center の利用規約を遵守する必要があります。

検索語句 PriceCompetitivenessProductView: お客様の販売商品と同じものが他の販売店でいくらで売られているかを把握できます。

価格競争力データを確認できるサンプルを次に示します。リクエストを行うには、次の Merchant Center クエリ言語のステートメントを reports.search メソッドに渡します。

SELECT
  product_view.id, product_view.title, product_view.brand,
  product_view.price_micros, product_view.currency_code,
  price_competitiveness.country_code,
  price_competitiveness.benchmark_price_micros,
  price_competitiveness.benchmark_price_currency_code
FROM PriceCompetitivenessProductView

実行

[実行] をクリックして、API Explorer でサンプルを試します。[ [Run] に移動し、 リクエスト URL を入力します。クエリを変更できます。クエリ全体を 1 行で入力し、 API Explorer を使用します。

上記のクエリに対するレスポンスの例を次に示します。

{
  "results": [
    {
      "productView": {
        "id": "online:en:US:12345",
        "title": "UGG Women's s Classic Mini",
        "brand": "UGG",
        "priceMicros": "124990000"
        "currencyCode": "USD"
      }
      "priceCompetitiveness": {
        "countryCode": "US",
        "benchmarkPriceMicros": "119922291",
        "benchmarkPriceCurrencyCode": "USD"
      }
    },
    {
      "productView": {
        "id": "online:en:US:12346",
        "title": "Nike React Infinity Run Flyknit 2",
        "brand": "Nike",
        "priceMicros": "119990000"
        "currencyCode": "USD"
      }
      "priceCompetitiveness": {
        "countryCode": "US",
        "benchmarkPriceMicros": "173436840",
        "benchmarkPriceCurrencyCode": "USD"
      }
    },
    {
      "productView": {
        "id": "online:en:US:12347",
        "title": "New Balance 327 White Trainers",
        "brand": "New Balance",
        "priceMicros": "84990000"
        "currencyCode": "USD"
      }
      "priceCompetitiveness": {
        "countryCode": "US",
        "benchmarkPriceMicros": "85459050",
        "benchmarkPriceCurrencyCode": "USD"
      }
    }
  ]
}