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

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

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

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

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

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

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

यहां दिए गए सैंपल का इस्तेमाल करके, विषय की लोकप्रियता और रुझान का डेटा देखा जा सकता है. आसानी से आपकी वेबसाइट पर काम करने के लिए, 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 के बारे में अक्सर पूछे जाने वाले सवाल देखें डेटा और रुझान के टॉप चार्ट ज़्यादा जानकारी दी गई है.