This method returns a list of brands that have live products. Brands that have very few products will be omitted.
http://api.shopstylecollective.com/api/v2/brands?pid=YOUR_API_KEY
Response
A list of all Brands with ID, name, url.
Sample JSON
{ metadata: { offset: 0, limit: 1, total: 10047, label: "Brand", pluralLabel: "Brands", name: "Brand", shortName: "b", multiSelect: true, type: "All" }, brands: [ { id: "3", name: "7 For All Mankind", synonyms: [ "7 Jeans", "Seven Jeans", "For All Mankind", "赛文弗奥曼德" ] } ] }
Sample XML
<BrandListResponse> <metadata> <offset>0</offset> <limit>1</limit> <total>8789</total> <label>Brand</label> <pluralLabel>Brands</pluralLabel> <name>Brand</name> <shortName>b</shortName> <multiSelect>true</multiSelect> <type>All</type> </metadata> <brands> <brand> <id>3</id> <name>7 For All Mankind</name> <synonyms> <synonym>7 Jeans</synonym> <synonym>Seven Jeans</synonym> <synonym>For All Mankind</synonym> <synonym>赛文弗奥曼德</synonym> </synonyms> </brand> </brands> </BrandListResponse>