John Jones
John Jones

Reputation: 2265

Amazon API ItemSearch Categories

I am using PHP PEAR Amazon package to retrieve products from the API, I can search for Books and DVDS at the moment, but I need all the categories, the problem is I cant find all the categories like e.g. home & garden.

I am using below code to pull out Books:

$result = $amazon->ItemSearch('Books', $options);

I have tried replacing books with Home&Garden but doesnt work, I need a full list of Amazon cats, anyone have any ideas where I can get these from I have trawled the Amazon site.

Upvotes: 6

Views: 6661

Answers (1)

FortyTwo
FortyTwo

Reputation: 138

here are lists of possible SearchIndexes per locale and what parameters they accept.
"HomeGarden" should be what you're looking for..

Upvotes: 8

Related Questions