What can you do with the ShoppingScraper Amazon Offers API?
- Scrape offers from multiple sellers on Amazon in any supported country
- Scrape prices, shipping, and total cost based on the URL, EAN or SKU (ASIN)
- We translate the EAN in any given Amazon country to the right ASIN
API response
url | the requested URL | |
ean | the requested EAN code | |
sku | the requested SKU code | |
geo | country | selected country for request on Amazon |
status | response | server response from the request (200/404/429/500) |
results | classification | type of data returned from Amazon |
offers | seller | seller's name on Amazon |
sellerId | unique seller ID on Amazon | |
price | price of the product offer | |
shippingPrice | shipping cost for the product offer | |
totalPrice | total price including shipping | |
condition | condition of the product offer (New/Used) | |
shippingMethod | shipping method used for the product offer |
Parameters
Description | Example values |
Add your own metadata to your request, will be added to the payload | internal product id = 5555 |
Any ISO 3166-1 country code where Amazon is supported | de, uk, es, etc. |
Identify any product with SKU code | 3948859086 |
Your ShoppingScraper API key | (hidden for security) |
Matching and countries
We only return data if we can accurately match the SKU on Amazon. We support Amazon Netherlands (amazon.nl), Amazon Belgium (amazon.com.be), Amazon France (amazon.fr) and Amazon Germany (amazon.de)
Sample URL using ASIN
https://api.shoppingscraper.com/offers?site=amazon.de&sku={SKU}&api_key={API_KEY}
Sample payload
Sample URL using URL
https://api.shoppingscraper.com/offers?site=amazon.de&url={URL}&api_key={API_KEY}
Sample payload
Sample URL using EAN
https://api.shoppingscraper.com/offers?site=amazon.de&ean={EAN}&api_key={API_KEY}
Sample payload
{ { "results": [ { "ean": null, "sku": "3948859086", "url": "https://amazon.de/dp/3948859086", "title": "Couch Potatoes: Food für faule Tage", "thumbnail": "https://m.media-amazon.com/images/I/41xJXg-wNqL.jpg", "availability": "InStock", "offers": [ { "seller": "Die-Bücherfrau", "sellerId": "A2Q0WMVWZHZXF1", "price": 35, "shippingPrice": 13.47, "totalPrice": 48.47, "condition": "New", "shippingMethod": "standard" }, { "seller": "Rheinberg-Buch", "sellerId": "AQJOK2ISQB5Q5", "price": 35, "shippingPrice": 15, "totalPrice": 50, "condition": "New", "shippingMethod": "standard" }, { "seller": "der_buechermann", "sellerId": "AJPSNQXZ9MPVQ", "price": 35, "shippingPrice": 15.05, "totalPrice": 50.05, "condition": "New", "shippingMethod": "standard" }, { "seller": "Die-Bücherschwester", "sellerId": "A2IC3T9ETMBMOP", "price": 35, "shippingPrice": 16.05, "totalPrice": 51.05, "condition": "New", "shippingMethod": "standard" }, { "seller": "buchrakete", "sellerId": "A2HNO22J6HJR0R", "price": 35, "shippingPrice": 27.95, "totalPrice": 62.95, "condition": "New", "shippingMethod": "standard" }, { "seller": "averdo24", "sellerId": "A34Y2KYGMK99L1", "price": 35, "shippingPrice": 38.16, "totalPrice": 73.16, "condition": "New", "shippingMethod": "standard" }, { "seller": "Return policy", "sellerId": null, "price": 35.33, "shippingPrice": 17.45, "totalPrice": 52.78, "condition": "New", "shippingMethod": "Prime" } ] } ] } }