Comprendi il mercato

Puoi utilizzare i report di Market Insights per visualizzare i dati sulla vendita al dettaglio di Google che possono aiutarti a comprendere il mercato attuale. Questi dati includono:

  • Prodotti e brand più venduti
  • Punti di prezzo competitivi
  • Suggerimenti sul prezzo scontato
  • Informazioni sul panorama competitivo del tuo settore

Il tuo account deve soddisfare requisiti di idoneità minimi e devi garantire che l'utilizzo da parte tua o di terze parti dei dati di Market Insights esportati dal tuo account Merchant Center sia conforme ai Termini e condizioni di Merchant Center.

Identificare i prodotti più venduti

Puoi utilizzare i report sui prodotti più venduti per visualizzare i prodotti e i brand più venduti su Google e verificare se sono disponibili nel tuo feed dei prodotti.

Questi dati sulla popolarità sono raggruppati in base al paese e alla categoria prodotto Google per aiutarti a decidere quali nuovi prodotti e brand rendere disponibili. Possono esserti utili per individuare le tendenze stagionali mediante l'utilizzo di dati storici e per identificare i prodotti e i brand che potrebbero trarre vantaggio da un aumento del budget o delle offerte.

Prodotti

Esegui una query su best_sellers_product_cluster_view per visualizzare i prodotti più venduti su Google.

Per visualizzare i prodotti più venduti, trasmetti la seguente istruzione di Merchant Center Query Language al accounts.reports.search metodo:

SELECT
  report_date,
  report_granularity,
  report_country_code,
  report_category_id,
  rank,
  previous_rank,
  relative_demand,
  previous_relative_demand,
  relative_demand_change,
  title,
  brand,
  category_l1,
  category_l2,
  category_l3,
  variant_gtins,
  inventory_status,
  brand_inventory_status
FROM best_sellers_product_cluster_view
WHERE report_date = '2022-10-10'
  AND report_granularity = 'WEEKLY'
  AND report_country_code = 'US'
  AND report_category_id = 166
ORDER BY rank

Puoi modificare i valori nella clausola WHERE per personalizzare il report per altre date, granularità, paesi e categorie.

Di seguito è riportata una risposta di esempio alla query precedente:

{
  "results": [
    {
      "bestSellersProductClusterView": {
        "reportDate": "2022-10-10",
        "reportGranularity": "WEEKLY",
        "reportCountryCode": "US",
        "reportCategoryId": "166",
        "rank": "1",
        "previousRank": "1",
        "relativeDemand": "VERY_HIGH",
        "previousRelativeDemand": "VERY_HIGH",
        "relativeDemandChange": "FLAT",
        "title": "Ugg Shoes Ugg Tasman",
        "brand": "UGG",
        "categoryL1": "Apparel & Accessories",
        "categoryL2": "Shoes",
        "categoryL3": "",
        "variantGtins":
            ["00737872992873", "00737872992880", "00737872992866"],
        "inventoryStatus": "NOT_IN_INVENTORY",
        "brandInventoryStatus": "NOT_IN_INVENTORY"
      }
    },
    {
      "bestSellersProductClusterView": {
        "reportDate": "2022-10-10",
        "reportGranularity": "WEEKLY",
        "reportCountryCode": "US",
        "reportCategoryId": "166",
        "rank": "2",
        "previousRank": "8",
        "relativeDemand": "VERY_HIGH",
        "previousRelativeDemand": "HIGH",
        "relativeDemandChange": "RISER",
        "title": "UGG Women's s Classic Mini",
        "brand": "UGG",
        "categoryL1": "Apparel & Accessories",
        "categoryL2": "Shoes",
        "categoryL3": "",
        "variantGtins":
            ["00194715081314", "00194715081246", "00194715081321"],
        "inventoryStatus": "NOT_IN_INVENTORY",
        "brandInventoryStatus": "NOT_IN_INVENTORY"
      }
    },
    {
      "bestSellersProductClusterView": {
        "reportDate": "2022-10-10",
        "reportGranularity": "WEEKLY",
        "reportCountryCode": "US",
        "reportCategoryId": "166",
        "rank": "3",
        "previousRank": "2",
        "relativeDemand": "VERY_HIGH",
        "previousRelativeDemand": "VERY_HIGH",
        "relativeDemandChange": "FLAT",
        "title": "Crocs Classic",
        "brand": "Crocs",
        "categoryL1": "Apparel & Accessories",
        "categoryL2": "Shoes",
        "categoryL3": "",
        "variantGtins":
            ["00887350811209", "00191448903852", "00191448769090"],
        "inventoryStatus": "NOT_IN_INVENTORY",
        "brandInventoryStatus": "OUT_OF_STOCK"
      }
    }
  ]
}

Per ulteriori informazioni sui campi disponibili per la query, consulta Campi nella tabella.bestSellersProductClusterView

Brand

Esegui una query su best_sellers_brand_view per visualizzare i brand più venduti su Google.

Per visualizzare i brand più venduti, trasmetti la seguente istruzione di Merchant Center Query Language al accounts.reports.search metodo:

SELECT
  report_date,
  report_granularity,
  report_country_code,
  report_category_id,
  rank,
  previous_rank,
  relative_demand,
  previous_relative_demand,
  relative_demand_change,
  brand
FROM best_sellers_brand_view
WHERE report_date = '2022-10-10'
  AND report_granularity = 'WEEKLY'
  AND report_country_code = 'US'
  AND report_category_id = 166
ORDER BY rank

Puoi modificare i valori nella clausola WHERE per personalizzare il report per altre date, granularità, paesi e categorie.

Di seguito è riportata una risposta di esempio alla query precedente:

{
  "results": [
    {
      "bestSellersBrandView": {
        "reportDate": "2022-10-10",
        "reportGranularity": "WEEKLY",
        "reportCountryCode": "US",
        "reportCategoryId": "166",
        "rank": "1",
        "previousRank": "1",
        "relativeDemand": "VERY_HIGH",
        "previousRelativeDemand": "VERY_HIGH",
        "relativeDemandChange": "FLAT",
        "brand": "Nike"
      }
    },
    {
      "bestSellersBrandView": {
        "reportDate": "2022-10-10",
        "reportGranularity": "WEEKLY",
        "reportCountryCode": "US",
        "reportCategoryId": "166",
        "rank": "2",
        "previousRank": "2",
        "relativeDemand": "HIGH",
        "previousRelativeDemand": "HIGH",
        "relativeDemandChange": "FLAT",
        "brand": "SHEIN"
      }
    },
    {
      "bestSellersBrandView": {
        "reportDate": "2022-10-10",
        "reportGranularity": "WEEKLY",
        "reportCountryCode": "US",
        "reportCategoryId": "166",
        "rank": "3",
        "previousRank": "4",
        "relativeDemand": "HIGH",
        "previousRelativeDemand": "HIGH",
        "relativeDemandChange": "FLAT",
        "brand": "adidas"
      }
    }
  ]
}

Per ulteriori informazioni sui campi disponibili per la query, consulta Campi nella tabella.bestSellersBrandView

Impostare prezzi competitivi

Puoi utilizzare il report sulla competitività del prezzo per vedere il prezzo che gli altri rivenditori assegnano agli stessi prodotti che vendi anche tu.

Per visualizzare i suggerimenti su come definire i prezzi dei tuoi prodotti in base al rendimento previsto, consulta Migliorare i prezzi.

Esegui una query su price_competitiveness_product_view per scoprire il prezzo che gli altri rivenditori assegnano agli stessi prodotti che vendi anche tu.

Per visualizzare i dati sulla competitività del prezzo, trasmetti la seguente Merchant Center Query Language istruzione al accounts.reports.search metodo:

SELECT
  id,
  title,
  brand,
  price,
  report_country_code,
  benchmark_price
FROM price_competitiveness_product_view

Di seguito è riportata una risposta di esempio alla query precedente:

{
  "results": [
    {
      "priceCompetitivenessProductView": {
        "id": "en~US~12345",
        "title": "UGG Women's s Classic Mini",
        "brand": "UGG",
        "price" {
          "amountMicros": "124990000",
          "currencyCode": "USD"
        },
        "reportCountryCode": "US",
        "benchmarkPrice" {
          "amountMicros": "119922291",
          "currencyCode": "USD"
        }
      }
    },
    {
      "priceCompetitivenessProductView": {
        "id": "en~US~12346",
        "title": "Nike React Infinity Run Flyknit 2",
        "brand": "Nike",
        "price" {
          "amountMicros": "119990000",
          "currencyCode": "USD"
        },
        "reportCountryCode": "US",
        "benchmarkPrice" {
          "amountMicros": "173436840",
          "currencyCode": "USD"
        }
      }
    },
    {
      "priceCompetitivenessProductView": {
        "id": "en~US~12347",
        "title": "New Balance 327 White Trainers",
        "brand": "New Balance",
        "price" {
          "amountMicros": "84990000",
          "currencyCode": "USD"
        },
        "reportCountryCode": "US",
        "benchmarkPrice" {
          "amountMicros": "85459050",
          "currencyCode": "USD"
        }
      }
    }
  ]
}

Per ulteriori informazioni sui campi disponibili per la query, consulta Campi nella tabella priceCompetitivenessProductView.