When I'm using my account api keys, which endpoint and which API do I need to hit to be able to tell if I can sell a given product or not?
-
Try to catch **Error** by **Code** istead of catching **response** hope that will help you. – G. Mansour Oct 14 '16 at 14:09
2 Answers
Have you looked at the products API?
You can check out the example response in the bottom of this page. It holds the properties of the product in question and I think you can deduce what you need from that.
Also, this link if for the full API docs where I'm sure you can find more information.
Edit:
This is Amazon's product guidelines. You can see which products can be sold in general and how they should be presented. The API can only be used on listed products i.e. products that are already ready to be sold

- 1,968
- 2
- 17
- 38
-
hi @Guy Grin thanks for your response, which call do I make exactly and what do I look for in response? Yes I have looked at products API, I invoked every single endpoint on that API, nothing I can see in the response that would indicate I can't sell that product – Gandalf StormCrow Oct 09 '16 at 16:02
-
@GandalfStormCrow I think I might have misunderstood your original question. Are you looking for a property e.g. `isSaleable` for a given product? Or do you want guidelines on which products can be generally sold on Amazon? – Guy Grin Oct 09 '16 at 16:59
-
I m looking for something `isSaleable` yes, or maybe if I can determine the selability of the product based on few calls to api – Gandalf StormCrow Oct 10 '16 at 00:49
-
I think you are confusing some things. Amazon has guidelines on which products can be sold in general and how they should be presented - https://www.amazon.com/gp/help/customer/display.html/ref=hp_left_ac?ie=UTF8&nodeId=200463270 - to me it would seem that once a product is already listed it can be sold but I might be missing your intentions. Try adding data - what are the details of the case. What are you building and what code have you used... – Guy Grin Oct 10 '16 at 02:04
-
hi @Guy Grin I think you don't understand how amazon works, are you selling on the platform? "o me it would seem that once a product is already listed it can be sold" - This is what I want to know, which products can I list and which I cannot. If you are familiar with the platform you would know that there are some restricted products and categories. – Gandalf StormCrow Oct 10 '16 at 16:31
-
Hi @GandalfStormCrow, the link I posted in my previous comment directs to Amazon's guidelines on which products can be listed and sold. As far as I know the API can only be used on listed products i.e. products that are already ready to be sold. Sorry if I didn't understand what you meant. – Guy Grin Oct 10 '16 at 20:55
-
too bad wish there was a way to find out if you can sell/list or not – Gandalf StormCrow Oct 12 '16 at 04:44
According to https://www.amazon.com/gp/help/customer/display.html/ref=hp_left_ac?ie=UTF8&nodeId=200277040, prohibition depends on the country's law.So, no api outputs whether your all products are sellable or not.
"For some product categories, sellers may not create product listings without prior approval from Amazon. In addition, sellers may be required to obtain additional approval to list certain products in certain categories. To request access to a specific category, see" https://www.amazon.com/gp/help/customer/display.html?nodeId=14113001

- 1,417
- 14
- 20