ShoppingScraper Amazon Buybox API
What can you do with the ShoppingScraper Amazon Buybox API?
- Scrape buybox offers from Amazon marketplaces in supported countries
- Get current prices, shipping costs, and seller information using EAN or SKU
- Track buybox ownership and pricing across multiple Amazon marketplaces
Supported Amazon Marketplaces
- amazon.nl (Netherlands)
- amazon.com.be (Belgium)
- amazon.fr (France)
- amazon.de (Germany)
API response
ean | EAN/barcode of the product | |
sku | Amazon SKU/ASIN of the product | |
offers | Buybox offer information | |
sellerName | name of the seller holding the buybox | |
sellerReference | unique seller identifier on Amazon | |
price | product price in the buybox | |
shippingPrice | shipping cost for the offer | |
totalPrice | total price including shipping | |
condition | product condition (New/Used) | |
shippingMethod | shipping method for the offer |
Sample URLs
Using EAN:
https://api.shoppingscraper.com/buybox?ean={EAN}&site=amazon.nl&api_key={API_KEY}
Using SKU/ASIN:
https://api.shoppingscraper.com/buybox?sku={SKU}&site=amazon.com.be&api_key={API_KEY}
Parameters
Parameter | Description | Example values |
site | Amazon marketplace domain | amazon.nl, amazon.com.be, amazon.fr, amazon.de |
ean | Product EAN/barcode | 8719514342125 |
sku | Amazon SKU/ASIN | B09CV78GV1 |
api_key | Your ShoppingScraper API key | (hidden for security) |
Sample Response
{ "results": [{ "ean": "8719514342125", "sku": "B09CV78GV1", "offers": { "sellerName": "Amazon", "sellerReference": 0, "price": "36.74", "shippingPrice": "0.00", "totalPrice": "36.74", "condition": "Nieuw", "shippingMethod": "standard" } }] }
Notes
- The API returns data only when a valid product match is found on the specified Amazon marketplace
- Prices are returned in the local currency of the marketplace
- Response times may vary based on marketplace and product availability