सबसे लोकप्रिय प्रॉडक्ट की पहचान करें

सबसे ज़्यादा बिकने वाले प्रॉडक्ट और ब्रैंड की रिपोर्ट का इस्तेमाल करके, Google Shopping और शॉपिंग विज्ञापनों में सबसे ज़्यादा बिकने वाले प्रॉडक्ट देखे जा सकते हैं. इस रिपोर्ट में दी गई जानकारी का इस्तेमाल करके, यह समझा जा सकता है कि Google पर कौनसे प्रॉडक्ट अच्छा परफ़ॉर्म कर रहे हैं और क्या वे प्रॉडक्ट आपके पास उपलब्ध हैं.

ज़्यादा जानकारी के लिए, सबसे ज़्यादा बिकने वाले प्रॉडक्ट और ब्रैंड की रिपोर्ट के बारे में जानकारी लेख पढ़ें.

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

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

सबसे ज़्यादा बिकने वाले प्रॉडक्ट देखने के लिए, यहां दिया गया नमूना इस्तेमाल किया जा सकता है. अनुरोध करने के लिए, Merchant Center Query Language का यह स्टेटमेंट, reports.search तरीके में पास करें:

SELECT
  best_sellers.report_date, best_sellers.report_granularity,
  best_sellers.country_code, best_sellers.category_id,
  best_sellers.rank, best_sellers.previous_rank,
  best_sellers.relative_demand, best_sellers.previous_relative_demand,
  best_sellers.relative_demand_change,
  product_cluster.title, product_cluster.brand, product_cluster.category_l1,
  product_cluster.category_l2, product_cluster.category_l3, 
  product_cluster.variant_gtins, product_cluster.inventory_status, 
  product_cluster.brand_inventory_status
FROM BestSellersProductClusterView
WHERE best_sellers.report_date = '2022-10-10'
  AND best_sellers.report_granularity = 'WEEKLY'
  AND best_sellers.country_code = 'US'
  AND best_sellers.category_id = 166
ORDER BY best_sellers.rank

रिपोर्ट को अन्य तारीखों, ग्रैनुलैरिटी, देशों, और कैटगरी के हिसाब से पसंद के मुताबिक बनाने के लिए, WHERE क्लॉज़ में मौजूद वैल्यू बदली जा सकती हैं.

चलाएं

नमूने को API Explorer में आज़माने के लिए, चलाएं पर क्लिक करें. चलाएं पर क्लिक करने के बाद, अनुरोध के यूआरएल में, कारोबारी या कंपनी के आईडी की जगह अपना आईडी डालें. क्वेरी में बदलाव किया जा सकता है. API Explorer के साथ काम करने के लिए, पूरी क्वेरी एक ही लाइन में होनी चाहिए.

यहां, पिछली क्वेरी का एक नमूना दिया गया है:

{
  "results": [
    {
      "bestSellers": {
        "reportDate": "2022-10-10",
        "reportGranularity": "WEEKLY",
        "countryCode": "US",
        "categoryId": "166"
        "rank": "1",
        "previousRank": "1",
        "relativeDemand": "VERY_HIGH",
        "previousRelativeDemand": "VERY_HIGH",
        "relativeDemandChange": "FLAT"
      }
      "productCluster": {
        "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"
      }
    },
    {
      "bestSellers": {
        "reportDate": "2022-10-10",
        "reportGranularity": "WEEKLY",
        "countryCode": "US",
        "categoryId": "166"
        "rank": "2",
        "previousRank": "8",
        "relativeDemand": "VERY_HIGH",
        "previousRelativeDemand": "HIGH",
        "relativeDemandChange": "RISER"
      }
      "productCluster": {
        "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"
      }
    },
    {
      "bestSellers": {
        "reportDate": "2022-10-10",
        "reportGranularity": "WEEKLY",
        "countryCode": "US",
        "categoryId": "166"
        "rank": "3",
        "previousRank": "2",
        "relativeDemand": "VERY_HIGH",
        "previousRelativeDemand": "VERY_HIGH",
        "relativeDemandChange": "FLAT"
      }
      "productCluster": {
        "title": "Crocs Classic",
        "brand": "Crocs",
        "categoryL1": "Apparel & Accessories",
        "categoryL2": "Shoes",
        "categoryL3": "",
        "variantGtins":
            ["00887350811209", "00191448903852", "00191448769090"],
        "inventoryStatus": "NOT_IN_INVENTORY",
        "brandInventoryStatus": "OUT_OF_STOCK"
      }
    }
  ]
}