আপনি Google শপিং এবং শপিং বিজ্ঞাপনগুলিতে সর্বাধিক বিক্রিত পণ্যগুলি দেখতে সেরা বিক্রেতার প্রতিবেদন ব্যবহার করতে পারেন৷ কোন পণ্যগুলি Google-এ ভাল পারফর্ম করছে এবং আপনি বর্তমানে সেগুলি বহন করছেন কিনা তা বুঝতে আপনি এই প্রতিবেদনের তথ্য ব্যবহার করতে পারেন৷
আরও তথ্যের জন্য সেরা বিক্রেতার প্রতিবেদন সম্পর্কে দেখুন।
আপনার অ্যাকাউন্টকে অবশ্যই ন্যূনতম যোগ্যতার প্রয়োজনীয়তা পূরণ করতে হবে, এবং আপনাকে অবশ্যই নিশ্চিত করতে হবে যে আপনার বণিক কেন্দ্রের অ্যাকাউন্ট থেকে রপ্তানি করা মার্কেট ইনসাইটস ডেটার আপনার ব্যবহার বা কোনো তৃতীয় পক্ষের ব্যবহার মার্চেন্ট সেন্টারের শর্তাবলী মেনে চলছে।
Google-এ সবচেয়ে বেশি বিক্রি হওয়া পণ্যগুলি দেখতে BestSellersProductClusterView
জিজ্ঞাসা করুন৷
এখানে একটি নমুনা রয়েছে যা আপনি সর্বাধিক বিক্রিত পণ্যগুলি দেখতে ব্যবহার করতে পারেন৷ অনুরোধ করতে, নিম্নলিখিত মার্চেন্ট সেন্টার কোয়েরি ল্যাঙ্গুয়েজ স্টেটমেন্টটি 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 এক্সপ্লোরারে নমুনা চেষ্টা করতে রান ক্লিক করুন। আপনি রান ক্লিক করার পরে, অনুরোধ URL-এ আপনার নিজস্ব মার্চেন্ট আইডিতে মার্চেন্ট আইডি প্লেসহোল্ডার আপডেট করুন। আপনি ক্যোয়ারী পরিবর্তন করতে পারেন. API এক্সপ্লোরারের সাথে কাজ করার জন্য সম্পূর্ণ ক্যোয়ারী এক লাইনে থাকতে হবে।
এখানে পূর্ববর্তী ক্যোয়ারী থেকে একটি নমুনা প্রতিক্রিয়া:
{
"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"
}
}
]
}