Reputation: 653
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
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