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

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

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

アカウントは最低限の資格要件を満たしている必要があります。また、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 でサンプルを試します。[実行] をクリックした後、リクエスト URL に含まれる販売者 ID のプレースホルダを、独自の販売者 ID に更新します。クエリを変更できます。API Explorer を使用する場合は、クエリ全体を 1 行に記述する必要があります。

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

{
  "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"
      }
    }
  ]
}