Jerry Hamby • almost 10 years ago
Logos for Brands and Stores
As a followup to the Top 10 Brands question. do ALL brands and stores have a logo or image that can be used for display? Are they all one size, if so, what is the size dimension?
Comments are closed.

3 comments
Paul Dumas Manager • almost 10 years ago
Hi Jeremy,
While we do not have the logos for all the brands available, but you can easily get a list of all brand names for a product set.
For example:
This call gets a list of all dress watches (category 3-7786_a:3821562):
https://api.shop.com/AffiliatePublisherNetwork/v1/products?publisherID=TEST&locale=en_US&categoryId=3-7786_a:3821562
In the response of the above call there will be the list of all brands in the product set, and how many products for each brand (see below).
A subsequent call using a specific brandId will get the details for that brands products:
https://api.shop.com/AffiliatePublisherNetwork/v1/products?publisherID=TEST&locale=en_US&categoryId=3-7786_a:3821562&brandId=Bulova
***you can also specify a price range you wish to filter by:
https://api.shop.com/AffiliatePublisherNetwork/v1/products?publisherID=TEST&locale=en_US&categoryId=3-7786_a:3821562&brandId=Bulova&priceRangeId=[170.01 TO 230.00]
(brand list returned for a call using the 3rd level category ID for dress watches):
"brands": [
{
"name": "Citizen",
"productCount": 365,
"id": "Citizen"
},
{
"name": "Bulova",
"productCount": 147,
"id": "Bulova"
},
{
"name": "Aqua Master",
"productCount": 155,
"id": "\"Aqua Master\""
},
{
"name": "Michael Kors",
"productCount": 37,
"id": "\"Michael Kors\""
},
{
"name": "Charles-Hubert",
"productCount": 91,
"id": "Charles-Hubert"
},
{
"name": "Suntime",
"productCount": 72,
"id": "Suntime"
},
{
"name": "Invicta",
"productCount": 52,
"id": "Invicta"
},
{
"name": "Armani",
"productCount": 50,
"id": "Armani"
},
{
"name": "Fossil",
"productCount": 48,
"id": "Fossil"
},
{
"name": "Kenneth Cole",
"productCount": 47,
"id": "\"Kenneth Cole\""
},
{
"name": "DKNY",
"productCount": 53,
"id": "DKNY"
},
{
"name": "Calvin Klein",
"productCount": 37,
"id": "\"Calvin Klein\""
},
{
"name": "Casio",
"productCount": 24,
"id": "Casio"
},
{
"name": "Diesel",
"productCount": 25,
"id": "Diesel"
},
{
"name": "Tommy Hilfiger",
"productCount": 30,
"id": "\"Tommy Hilfiger\""
},
{
"name": "Croton",
"productCount": 31,
"id": "Croton"
},
{
"name": "Skagen",
"productCount": 21,
"id": "Skagen"
},
{
"name": "Longines",
"productCount": 11,
"id": "Longines"
},
{
"name": "Gucci",
"productCount": 19,
"id": "Gucci"
},
{
"name": "Movado",
"productCount": 20,
"id": "Movado"
}
]
Jerry Hamby • almost 10 years ago
How or where do I get the link to any brand or store's logo? Do I have to build my own database of logos and link to them?
Paul Dumas Manager • almost 10 years ago
We do not currently provide links to the brand logo images. That feature is in the backlog.
Thanks