הבנת השוק

בעזרת הדוחות של Market Insights תוכלו להציג נתוני קמעונאות מ-Google שיעזרו לכם להבין מהו השוק הנוכחי. הנתונים האלה כוללים את המוצרים והמותגים הכי נמכרים, מחירים תחרותיים, הצעות למחיר מבצע ומידע על המרחב התחרותי של הענף שלכם.

החשבון שלכם צריך לעמוד בדרישות הסף המינימליות, ועליכם לוודא שהשימוש שלכם או של כל צד שלישי בנתונים של Market Insights שמיוצאים מחשבון Merchant Center שלכם נעשה בהתאם לתנאים ולהגבלות של Merchant Center.

זיהוי המוצרים הכי נמכרים

בדוחות 'המוצרים הכי נמכרים' תוכלו לראות אילו מוצרים ומותגים הכי נמכרים ב-Google, ולבדוק אם אתם מעבירים אותם עכשיו אל פיד המוצרים.

נתוני הפופולריות האלה מקובצים לפי קטגוריית המוצר ב-Google ולפי מדינה כדי לעזור לכם להחליט אילו מותגים ומוצרים חדשים כדאי לכם להוסיף למלאי. הם יכולים לעזור לך לזהות מגמות עונתיות באמצעות נתונים היסטוריים, ולזהות מוצרים ומותגים שהגדלת התקציבים או הצעות המחיר עשויה לשפר את המכירות שלהם.

מוצרים

שאילתה BestSellersProductClusterView כדי להציג את המוצרים הכי נמכרים ב-Google.

הנה דוגמה שאפשר להשתמש בה כדי להציג את המוצרים הכי נמכרים. כדי לשלוח את הבקשה, צריך להעביר את ההצהרה הבאה בשפת השאילתה של Merchant Center ל-method accounts.reports.search:

SELECT
  reportDate,
  reportGranularity,
  reportCountryCode,
  reportCategoryId,
  rank,
  previousRank,
  relativeDemand,
  previousRelativeDemand,
  relativeDemandChange,
  title,
  brand,
  categoryL1,
  categoryL2,
  categoryL3,
  variantGtins,
  inventoryStatus,
  brandInventoryStatus
FROM BestSellersProductClusterView
WHERE reportDate = '<var class="edit">2022-10-10</var>'
  AND reportGranularity = '<var class="edit">WEEKLY</var>'
  AND reportCountryCode = '<var class="edit">US</var>'
  AND reportCategoryId = <var class="edit">166</var>
ORDER BY rank

אפשר לשנות את הערכים בקטע WHERE על מנת להתאים אישית את הדוח לפי תאריכים אחרים, רמות פירוט אחרות, מדינות וקטגוריות אחרות.

הנה דוגמה לתגובה מהשאילתה הקודמת:

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

חברות

שאילתה BestSellersBrandView כדי להציג את המותגים הכי נמכרים ב-Google.

הנה דוגמה שניתן להשתמש בה כדי להציג את המותגים הנמכרים ביותר. כדי לשלוח את הבקשה, צריך להעביר את ההצהרה הבאה בשפת השאילתה של Merchant Center ל-method accounts.reports.search:

SELECT
  reportDate,
  reportGranularity,
  reportCountryCode,
  reportCategoryId,
  rank,
  previousRank,
  relativeDemand,
  previousRelativeDemand,
  relativeDemandChange,
  brand
FROM BestSellersBrandView
WHERE reportDate = '<var class="edit">2022-10-10</var>'
  AND reportGranularity = '<var class="edit">WEEKLY</var>'
  AND reportCountryCode = '<var class="edit">US</var>'
  AND reportCategoryId = <var class="edit">166</var>
ORDER BY rank

אפשר לשנות את הערכים בקטע WHERE על מנת להתאים אישית את הדוח לפי תאריכים אחרים, רמות פירוט אחרות, מדינות וקטגוריות אחרות.

הנה דוגמה לתגובה מהשאילתה הקודמת:

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

מחירים תחרותיים

בעזרת הדוח תחרותיות במחיר אפשר לראות איך קמעונאים אחרים מתמחרים את אותם מוצרים שאתם משווקים.

במאמר שיפור התמחור תוכלו לראות הצעות לתמחר את המוצרים שלכם על סמך הביצועים החזויים שלהם.

שאילתה PriceCompetitivenessProductView כדי לבדוק איך קמעונאים אחרים מתמחרים את אותם מוצרים שאתם משווקים.

הנה דוגמה שאפשר להשתמש בה כדי להציג נתונים על השוואת מחירים ביחס לשוק. כדי לשלוח את הבקשה, מעבירים את ההצהרה הבאה בשפת השאילתה של Merchant Center ל-method accounts.reports.search:

SELECT
  id,
  title,
  brand,
  price,
  reportCountryCode,
  benchmarkPrice
FROM PriceCompetitivenessProductView

הנה דוגמה לתגובה מהשאילתה הקודמת:

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