Menetapkan harga produk secara kompetitif

Anda dapat menggunakan laporan daya saing harga untuk mempelajari cara retailer lain menetapkan harga untuk produk yang sama yang Anda jual. Anda dapat menggunakan informasi ini saat menetapkan harga produk atau mengajukan bid pada iklan.

Lihat Tentang laporan daya saing harga untuk mengetahui informasi selengkapnya.

Akun Anda harus memenuhi persyaratan kelayakan minimum, dan Anda harus memastikan bahwa penggunaan Anda, atau penggunaan pihak ketiga, atas data Analisis Pasar yang diekspor dari akun Merchant Center Anda mematuhi persyaratan dan ketentuan Merchant Center.

Buat kueri PriceCompetitivenessProductView untuk mempelajari cara retailer lain menetapkan harga untuk produk yang sama dengan yang Anda jual.

Berikut adalah contoh yang dapat Anda gunakan untuk melihat data persaingan harga. Untuk membuat permintaan, teruskan pernyataan Bahasa Kueri Merchant Center berikut ke metode 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

Berikut adalah contoh respons dari kueri sebelumnya:

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