אתם יכולים להשתמש בדוחות מדדי השוק כדי להציג נתוני קמעונאות מ-Google שיעזרו לכם להבין את המצב בשוק הנוכחי. הנתונים האלה כוללים:
- המוצרים והמותגים הנמכרים ביותר
- מחירים תחרותיים
- הצעות למחירי מבצע
- מידע על הסביבה התחרותית בתחום שלכם
החשבון שלכם צריך לעמוד בדרישות הסף המינימליות, ועליכם לוודא שהשימוש שלכם או של כל צד שלישי בנתונים של Market Insights שמיוצאים מחשבון Merchant Center שלכם נעשה בהתאם לתנאים ולהגבלות של Merchant Center.
זיהוי המוצרים הכי נמכרים
אתם יכולים להשתמש בדוחות 'המוצרים הכי נמכרים' כדי לראות את המותגים והמוצרים הנמכרים ביותר כרגע ב-Google, ולבדוק אם הם נכללים בפיד המוצרים שלכם.
נתוני הפופולריות האלה מקובצים לפי קטגוריית המוצר ב-Google ולפי מדינה כדי לעזור לכם להחליט אילו מותגים ומוצרים חדשים כדאי להוסיף למלאי. הנתונים האלה יכולים לעזור לכם גם לזהות מגמות עונתיות בעזרת נתונים היסטוריים, וגם לזהות את המוצרים והמותגים שהמכירות שלהם עשויות להשתפר אם תגדילו את התקציבים או את הצעות המחיר בשבילם.
מוצרים
שולחים שאילתה best_sellers_product_cluster_view
כדי להציג את המוצרים הכי נמכרים ב-Google.
לפניכם דוגמה לקוד שאפשר להשתמש בו כדי להציג את המוצרים הנמכרים ביותר. כדי לשלוח את הבקשה, מעבירים את ההצהרה הבאה של שפת השאילתות של Merchant Center לשיטה accounts.reports.search
:
SELECT
report_date,
report_granularity,
report_country_code,
report_category_id,
rank,
previous_rank,
relative_demand,
previous_relative_demand,
relative_demand_change,
title,
brand,
category_l1,
category_l2,
category_l3,
variant_gtins,
inventory_status,
brand_inventory_status
FROM best_sellers_product_cluster_view
WHERE report_date = '<var class="edit">2022-10-10</var>'
AND report_granularity = '<var class="edit">WEEKLY</var>'
AND report_country_code = '<var class="edit">US</var>'
AND report_category_id = <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"
}
}
]
}
למידע נוסף על השדות שזמינים לשאילתות, ראו שדות בטבלה bestSellersProductClusterView
.
מותגים
שולחים שאילתה best_sellers_brand_view
כדי להציג את המותגים הנמכרים ביותר ב-Google.
לפניכם דוגמה לשימוש באפשרות הזו כדי להציג את המותגים הנמכרים ביותר. כדי לשלוח את הבקשה, מעבירים את ההצהרה הבאה של שפת השאילתות של Merchant Center לשיטה accounts.reports.search
:
SELECT
report_date,
report_granularity,
report_country_code,
report_category_id,
rank,
previous_rank,
relative_demand,
previous_relative_demand,
relative_demand_change,
brand
FROM best_sellers_brand_view
WHERE report_date = '<var class="edit">2022-10-10</var>'
AND report_granularity = '<var class="edit">WEEKLY</var>'
AND report_country_code = '<var class="edit">US</var>'
AND report_category_id = <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"
}
}
]
}
למידע נוסף על השדות שזמינים לשאילתות, ראו שדות בטבלה bestSellersBrandView
.
תמחור תחרותי
אתם יכולים להשתמש בדוח השוואת מחירים ביחס לשוק כדי לראות את המחיר שבו המוצרים שאתם משווקים נמכרים אצל קמעונאים אחרים.
במאמר שיפור התמחור מוסבר איך לקבל הצעות לתמחור המוצרים שלכם על סמך הביצועים הצפויים שלהם.
שולחים שאילתה למדד price_competitiveness_product_view
כדי לבדוק איך קמעונאים אחרים מתמחרים את אותם מוצרים שאתם מוכרים.
לפניכם דוגמה שבה אפשר להשתמש כדי להציג נתונים של השוואת מחירים ביחס לשוק. כדי לשלוח את הבקשה, מעבירים את ההצהרה הבאה בשפת השאילתות של Merchant Center לשיטה accounts.reports.search
:
SELECT
id,
title,
brand,
price,
report_country_code,
benchmark_price
FROM price_competitiveness_product_view
זוהי דוגמה לתגובה מהשאילתה הקודמת:
{
"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"
}
}
}
]
}
למידע נוסף על השדות שזמינים לשאילתות, ראו שדות בטבלה priceCompetitivenessProductView
.