Puoi utilizzare il report Più venduti per visualizzare i brand più venduti su Google Shopping e negli annunci Shopping. Puoi utilizzare le informazioni di questo report per capire quali brand sono hanno un buon rendimento su Google e se li hai attualmente offerti.
Per saperne di più, consulta Informazioni sul report Più venduti.
Il tuo account deve soddisfare requisiti di idoneità minimi e devi garantire che l'utilizzo da parte tua o di terze parti dei dati di Market Insights esportati dal tuo account Merchant Center sia conforme ai Termini e condizioni di Merchant Center.
Esegui una query BestSellersBrandView
per visualizzare i brand più venduti su Google.
Ecco un esempio che puoi utilizzare per visualizzare i brand più venduti. Per effettuare la richiesta, passa la seguente istruzione del linguaggio di query di Merchant Center al metodo 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, brand.name FROM BestSellersBrandView 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
Puoi modificare i valori nella clausola WHERE
per personalizzare il report per
altre date, granularità, paesi e categorie.
Fai clic su Esegui per provare l'esempio in Explorer API. Dopo aver fatto clic Esegui, aggiorna il segnaposto dell'ID commerciante con il tuo ID commerciante nel URL di richiesta. Puoi modificare la query. La query completa deve rimanere su una riga lavorare con Explorer API.
Ecco un esempio di risposta alla query precedente:
{
"results": [
{
"bestSellers": {
"reportDate": "2022-10-10",
"reportGranularity": "WEEKLY",
"countryCode": "US",
"categoryId": "166"
"rank": "1",
"previousRank": "1",
"relativeDemand": "VERY_HIGH",
"previousRelativeDemand": "VERY_HIGH",
"relativeDemandChange": "FLAT"
}
"brand": {
"name": "Nike",
}
},
{
"bestSellers": {
"reportDate": "2022-10-10",
"reportGranularity": "WEEKLY",
"countryCode": "US",
"categoryId": "166"
"rank": "2",
"previousRank": "2",
"relativeDemand": "HIGH",
"previousRelativeDemand": "HIGH",
"relativeDemandChange": "FLAT"
}
"brand": {
"name": "SHEIN"
}
},
{
"bestSellers": {
"reportDate": "2022-10-10",
"reportGranularity": "WEEKLY",
"countryCode": "US",
"categoryId": "166"
"rank": "3",
"previousRank": "4",
"relativeDemand": "HIGH",
"previousRelativeDemand": "HIGH",
"relativeDemandChange": "FLAT"
}
"brand": {
"name": "adidas"
}
}
]
}