Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add product in amazon using amazon api?

I'm doing a project using ebay and amazon api.

I've uploaded products to ebay sandbox using the api.

but I searched for api to add products in amazon api.

Is there any documentation or reference to do it?

Please help me solve this.

Thanks

like image 647
Natesan Avatar asked Mar 29 '14 08:03

Natesan


People also ask

Does Amazon have an API for their products?

Yes. Amazon has an API for Amazon Web Services. Amazon provides their API for each framework and language like PHP, Java, . NET, RUBY and many more.

Can you use Amazon API for free?

With Amazon API Gateway, you only pay when your APIs are in use. There are no minimum fees or upfront commitments. For HTTP APIs and REST APIs, you pay only for the API calls you receive and the amount of data transferred out.

What is API Amazon seller?

SP-API is a suite of REST-based APIs that provides Amazon selling partners programmatic access to their Amazon Seller Central account data. With SP-API, you can build applications that help sellers and vendors manage their Amazon business.


1 Answers

You have to use the Amazon MWS API (it's not the same as AWS product API) in order to upload your products to Amazon. Here you can read everything you need to know about MWS.

For your particular problem, you'll have to submit a feed which contains the product data you want to upload. Here is the documentation about Amazon's feed mechanism and feed submit operation.

UPDATE:

There are the feed client libraries, with the code samples, for C#, Java and PHP. For example, if you download the Java client library, you'll find a great example within the file on the path: src\com\amazonaws\mws\samples\SubmitFeedSample.java, etc.

If you are using another language, you'll have to write your own code, but the approach should be straightforward: you have a WS end-point (i.e. https://mws.amazonservices.com) and you have to execute the SubmitFeed operation against it.

An XML sample of the feed content

Feed content example.

like image 133
CyberMJ Avatar answered Sep 19 '22 23:09

CyberMJ