Reputation: 325
I am able to get the structured data form of the category hierarchy using getCategories() method of eBay's trading API. But now i want to get the product list of some of the categories of eBay site. What would be the best way of doing this. What other API i need to use ?
Upvotes: 0
Views: 1057
Reputation:
You can use the findItemsByCategory call via the Finding API. You pass up to 3 category IDs and eBay will search for items belonging to those categories. In addition it is possible to do the following with this call.
More information and examples can be found in the official eBay documentation.
Upvotes: 1