Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I get amazon API for category list

I want the category hierarchy of the amazon site. I need to extract all the category, sub category, sub sub category up to least level.

I need to develop discount finder of amazon , for that i want api of amazon , which can give me complete list of product category and sub category..

To build something like this

like image 335
user3463458 Avatar asked Mar 26 '14 09:03

user3463458


2 Answers

Take a look at BrowseNodeLookup method:

http://webservices.amazon.com/onca/xml?
Service=AWSECommerceService&
Operation=BrowseNodeLookup&
BrowseNodeId=1036682&
AssociateTag=yourTag
&Service=AWSECommerceService
&Timestamp=timestamp
&Signature=yourSignature

BrowseNodeId is ID of parent browse node. You can find some browse nodes IDs to start with here.

like image 173
Kniganapolke Avatar answered Oct 22 '22 13:10

Kniganapolke


you can find locale categories at the link locale categories link and use these nodes to find child nodes

like image 23
Rakeshyadvanshi Avatar answered Oct 22 '22 14:10

Rakeshyadvanshi