खरीदारी के लिए रुझान देखें

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

विषयों के रुझानों की रिपोर्ट का इस्तेमाल करके, Google Search पर समय के साथ किसी विषय की लोकप्रियता का पता लगाया जा सकता है. इसमें, अगले 13 हफ़्तों में उसकी अनुमानित वैल्यू की जानकारी भी शामिल है. साथ ही, इससे यह जानकारी भी मिलती है कि Google Search पर, खरीदारों के लिए अन्य पसंदीदा विषयों के मुकाबले उसकी लोकप्रियता कैसी है. इन रुझानों से आपको यह तय करने में मदद मिल सकती है कि कब पैसे चुकाकर और कब ऑर्गैनिक Google टूल इस्तेमाल करने चाहिए. इससे आपके प्रॉडक्ट या उससे मिलते-जुलते प्रॉडक्ट ऑनलाइन खोजने पर लोगों को आपके प्रॉडक्ट दिखने की संभावना बढ़ जाती है.

ज़्यादा जानकारी के लिए, खरीदारी के ट्रेंड के बारे में जानकारी देखें.

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

आपके खाते को ज़रूरी शर्तें पूरी करनी होंगी. साथ ही, आपको यह पक्का करना होगा कि आप या कोई तीसरा पक्ष, Google Shopping के विषय के रुझान के डेटा का इस्तेमाल, Merchant Center के नियमों और शर्तों के मुताबिक करे. किसी कैटगरी के रुझान देखने के लिए, आपके पास उस कैटगरी में कम से कम दो प्रॉडक्ट होने चाहिए. प्रॉडक्ट अपलोड करने के बाद, उस कैटगरी के रुझान आपके लिए उपलब्ध होने में 24 घंटे लग सकते हैं.

देखें कि Shopping के लिए Content API के साथ, कौनसी रिपोर्टिंग टेबल और फ़ील्ड उपलब्ध हैं.

यहां दिए गए सैंपल का इस्तेमाल करके, विषय की लोकप्रियता और रुझान का डेटा देखा जा सकता है. अनुरोध करने के लिए, Merchant Center की क्वेरी की भाषा के इस स्टेटमेंट को reports.search तरीके से पास करें:

SELECT
  topic_trends.customer_country_code,
  topic_trends.topic,
  topic_trends.date,
  topic_trends.search_interest,
  topic_trends.last7_days_search_interest,
  topic_trends.last30_days_search_interest,
  topic_trends.last90_days_search_interest,
  topic_trends.last120_days_search_interest,
  topic_trends.next7_days_search_interest
FROM TopicTrendsView
WHERE topic_trends.customer_country_code = 'US'
  AND topic_trends.date BETWEEN '2023-07-01' AND '2023-07-03'
ORDER BY topic_trends.date DESC

यहां पिछली क्वेरी से मिले जवाब का उदाहरण दिया गया है:

  "results": [
    {
      "topicTrends": {
        "customerCountryCode": "US",
        "topic": "Cell Phone Cases",
        "date": {
          "year": 2023,
          "month": 7,
          "day": 3
        },
        "searchInterest": 50.2,
        "last7DaysSearchInterest": 49.5
        "last30DaysSearchInterest": 51.1
        "last90DaysSearchInterest": 50.7
        "last120DaysSearchInterest": 49.3
        "next7DaysSearchInterest": 60
      }
    },
    {
      "topicTrends": {
        "customerCountryCode": "US",
        "topic": "Cell Phones",
        "date": {
          "year": 2023,
          "month": 7,
          "day": 2
        },
        "searchInterest": 70.2,
        "last7DaysSearchInterest": 69.8
        "last30DaysSearchInterest": 71.4
        "last90DaysSearchInterest": 70.6
        "last120DaysSearchInterest": 69.0
        "next7DaysSearchInterest": 70.1
      }
    },
{
      "topicTrends": {
        "customerCountryCode": "US",
        "topic": "Wireless Speakers",
        "date": {
          "year": 2023,
          "month": 7,
          "day": 1
        },
        "searchInterest": 40.6,
        "last7DaysSearchInterest": 41.4
        "last30DaysSearchInterest": 40.6
        "last90DaysSearchInterest": 40.3
        "last120DaysSearchInterest": 39.8
        "next7DaysSearchInterest": 41.1
      }
    }
  ]

ज़्यादा जानें

Google Trends के डेटा के बारे में अक्सर पूछे जाने वाले सवाल और ट्रेंड के टॉप चार्ट के बारे में जानकारी देखें.