你可以透過價格競爭力報表,瞭解其他零售商與你銷售的同款產品定價。為產品定價或廣告出價時,您可以使用這項資訊。
請參閱「價格競爭力簡介」 報表。
你的帳戶必須符合基本資格規定,而且你必須確定,你或任何第三方使用從 Merchant Center 帳戶匯出的「市場洞察」資料時,皆符合《Merchant Center 條款及細則》。
查詢
PriceCompetitivenessProductView
可查看其他零售商的同款產品定價。
你可以透過以下範例查看價格競爭力資料。如要提出要求,請將下列 Merchant Center Query Language 陳述式傳遞至 reports.search
方法:
SELECT
product_view.id, product_view.title, product_view.brand,
product_view.price_micros, product_view.currency_code,
price_competitiveness.country_code,
price_competitiveness.benchmark_price_micros,
price_competitiveness.benchmark_price_currency_code
FROM PriceCompetitivenessProductView
請按一下「Run」(執行),試用 API Explorer 中的範例。點選之後 執行,將商家 ID 預留位置更新為您自己的商家 ID 要求網址您可以修改查詢。完整查詢必須在同一行中 搭配 API Explorer 使用。
以下是前述查詢的回應範例:
{
"results": [
{
"productView": {
"id": "online:en:US:12345",
"title": "UGG Women's s Classic Mini",
"brand": "UGG",
"priceMicros": "124990000"
"currencyCode": "USD"
}
"priceCompetitiveness": {
"countryCode": "US",
"benchmarkPriceMicros": "119922291",
"benchmarkPriceCurrencyCode": "USD"
}
},
{
"productView": {
"id": "online:en:US:12346",
"title": "Nike React Infinity Run Flyknit 2",
"brand": "Nike",
"priceMicros": "119990000"
"currencyCode": "USD"
}
"priceCompetitiveness": {
"countryCode": "US",
"benchmarkPriceMicros": "173436840",
"benchmarkPriceCurrencyCode": "USD"
}
},
{
"productView": {
"id": "online:en:US:12347",
"title": "New Balance 327 White Trainers",
"brand": "New Balance",
"priceMicros": "84990000"
"currencyCode": "USD"
}
"priceCompetitiveness": {
"countryCode": "US",
"benchmarkPriceMicros": "85459050",
"benchmarkPriceCurrencyCode": "USD"
}
}
]
}