Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to get all amazon category products

How can I get all amazon products from an existing category?

With the API, I can browse 10 pages and get for each page 10 products.

The category has 502348 products, and I would like to get them all.

Here is my code:

Amazon Product Advertising API <?php ?>
$params = array(
        'Operation' => 'ItemSearch',
        'SearchIndex'=>'Electronics',
        //'BrowseNode'=>'281052',
        'ResponseGroup'=>'small',
        //'MerchantId' => 'All',
        //'Condition'=>'New',
        'ItemPage'=>'1471',
like image 838
Yan Avatar asked Oct 16 '11 21:10

Yan


People also ask

How do I find the category of an Amazon product?

From your inventory, click on a listing. When it opens up at Amazon.com, in the upper left along the toolbar, it will give you the category.

How many products are in Amazon categories?

Amazon has 36 product categories within which sellers can sell their products to their target audience. If you want to find success on Amazon, it's important to choose the right category to sell in.

What is the biggest selling category on Amazon?

It's no surprise that the Home & Kitchen category is the most popular among sellers; everyone uses some type of home or kitchen product in their everyday lives.


2 Answers

Maybe you should try to add two additional search parameters in your query - MinimumPrice and MaximumPrice - in combination with the keywords, of course. Then, whenever you get more than 10 pages for your search criteria, you should correct your min/mix price values.

That's how I was able to "avoid" that unreasonable limit that amazon set.

like image 81
CyberMJ Avatar answered Sep 21 '22 15:09

CyberMJ


Use the Sitemaps from the Amazon Robots.txt:

http://www.amazon.com/sitemaps.US_detail_page_sitemap_desktop_index.xml.gz

like image 44
Stefan Avatar answered Sep 18 '22 15:09

Stefan