aha
aha

Reputation: 4624

AWS API to get the price displayed on amazon site

On an Amazon site, there is usually a List Price and a Price. I am trying to figure out how to obtain Price programmatically.

For example: This product has List Price $35 and Price $26

Through the ItemLookUp API, the List Price can be obtained easily but is there a way to get the Price from Amazon API?

First I thought that 'price' is the price that amazon sells the item at, but for this previously mentioned product this Price is $26 while the amazon's own lowest price is $28.76

Then I thought Price is the lowest price that is eligible for Prime, but I can't find easy way of getting this information.

Upvotes: 4

Views: 5317

Answers (1)

JR Warren
JR Warren

Reputation: 317

If you make sure to include the Offers response group, you can get the lowest new price, lowest used price, etc. And if you need to, you can filter it to only offers from Amazon. That should give you the functionality you're needing. You can also find out if a specific offer is eligible for super saver shipping through that response group - which should be the same ones that are prime eligible.

Here's some more info on response groups and the different ones available - a very useful resource to dig through if you're wondering where to get a specific piece of info from.

I realize it's been a month since you asked this question, but I hope this helps. Let me know if you need any more clarification.

Upvotes: 5

Related Questions