Reputation: 427
I have used Ebay trading API to get specific seller's
I am looking forward to implement something similar with Amazon API. But Amazon API procedure looks a bit complicated. Moreover I haven't even got success in finding any API documents to check the functionality of different Amazon APIs.
So, I am looking forward to any kind of help in this matter, any online document or anything else.
Thanks in advance
Upvotes: 2
Views: 606
Reputation: 11119
The Orders API might be what you want. If you have the AmazonOrderId
, you can submit the GetOrder
operation to return details about that particular order. As a starting point, you can use Amazon's client libraries, which are in PHP, C#, or Java. Typically, I've downloaded the C# library, plugged in my account information and gotten results immediately. Then I use that knowledge to write my own apps.
There is also the scratchpad tool which is great to test all of the various API operations right inside the browser.
Upvotes: 1