burner007
burner007

Reputation: 653

Amazon Advertising API - Get bestsellers for all categories

How can I create a url which returns the name of the best sellers (top 100) of all product categories in amazon?

Upvotes: 0

Views: 7121

Answers (1)

Jonathan Spooner
Jonathan Spooner

Reputation: 7752

You don't really need to use the API for this. The top sellers can be found at the following url:

http://www.amazon.com/gp/bestsellers

As far as I know, the API is not really designed with this in mind. You can, however, use the BrowseNodes response group in an ItemLookup request to get the BrowseNodeId(s) of an item. Then you could use one of the returned BrowseNodeId to perform a BrowseNodeLookup with the TopSellers request parameter to get the top 10 items in that category.

That doesn't really sound like what you're looking for but I thought I'd mention it anyways.

Upvotes: 3

Related Questions