बाज़ार के बारे में समझें

मार्केट इनसाइट का इस्तेमाल किया जा सकता है रिपोर्ट में, Google से खुदरा कारोबार का डेटा देखा जा सकता है. इससे आपको कारोबार के मौजूदा हालात को समझने में मदद मिलेगी बाज़ार. इस डेटा में सबसे ज़्यादा बिकने वाले प्रॉडक्ट और ब्रैंड, और प्रतिस्पर्धी कीमत की जानकारी शामिल है पॉइंट, सेल में कीमत के सुझाव, और कॉम्पटिटिव लैंडस्केप की जानकारी को भी बनाए रखता है.

आपके खाते को ज़रूरी शर्तें पूरी करनी होंगी. आपको यह भी पक्का करना होगा कि आपने या किसी तीसरे पक्ष ने Merchant Center खाते से एक्सपोर्ट किए गए, Market Insights के डेटा का इस्तेमाल Merchant Center के नियमों और शर्तों के तहत किया है.

सबसे ज़्यादा बिकने वाले प्रॉडक्ट और ब्रैंड की पहचान करें

सबसे ज़्यादा बिकने वाले प्रॉडक्ट और ब्रैंड रिपोर्ट में, मौजूदा Google पर सबसे ज़्यादा बिकने वाले प्रॉडक्ट और ब्रैंड. इसके अलावा, यह भी हो सकता है कि आप फ़िलहाल उन्हें अपने प्रॉडक्ट फ़ीड में शामिल कर सकें.

लोकप्रियता का यह डेटा, 'Google प्रॉडक्ट कैटगरी' और देश के मुताबिक अलग-अलग ग्रुप में रखा जाता है. इससे, ज़्यादा से ज़्यादा जानकारी पाने में मदद मिलती है आपको यह तय करना होगा कि किन नए प्रॉडक्ट और ब्रैंड को स्टॉक में रखा जाए. इससे आपको यह पता लगाने में मदद मिलती है कि के आधार पर ऐतिहासिक डेटा का इस्तेमाल करके किसी खास सीज़न के रुझानों को समझाते हैं. साथ ही, प्रॉडक्ट और जिन्हें बजट या बिड बढ़ाने से फ़ायदा होगा.

प्रॉडक्ट

क्वेरी BestSellersProductClusterView Google पर सबसे ज़्यादा बिकने वाले प्रॉडक्ट देखने के लिए.

यहां एक सैंपल दिया गया है. इसे इस्तेमाल करके, सबसे ज़्यादा बिकने वाले प्रॉडक्ट देखे जा सकते हैं. अनुरोध करने के लिए, निम्न Merchant Center क्वेरी को पास करें भाषा स्टेटमेंट 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 क्वेरी को पास करें भाषा स्टेटमेंट 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 क्वेरी को पास करें भाषा स्टेटमेंट 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"
        }
      }
    }
  ]
}