sellytics Blog

How to get amazon product images and image urls

To get the amazon product images or pictures from the sellytics DATA API you need as always your access token. You get more information about how to obtain an access token from here.

 

Amazon product images are useful for content creators, displaying thumbnails in an affiliate store or using the images otherwise for your commodities management and other purposes. With the sellytics DATA API it’s really simple to obtain image urls from an amazon product.

Access product details which include product image urls

You can use the following curl to get all product information and look at the imageUrls array which contains all product image urls. Note that the marketplace and ASIN are contained in the end of the url. You could also change the marketplace for example to US if you need information from the Amazon US marketplace.

curl -X "GET" "https://api.sellytics.com/amazon/products/DE/B07CNFV32C/v1" \
-H 'Authorization: Bearer YOUR-TOKEN-HERE' \
-H 'Content-Type: application/json'

Continue reading →

How to get amazon product price, seller and other buybox information

To get the amazon product prices or buybox information from the sellytics DATA API you need as always your access token. You get more information about how to obtain an access token from here.

 

Amazon product prices are useful for re-pricing strategies within e-commerce shops, marketplaces and are also needed for affiliates that want to improve their customer and visitor experience. With the sellytics DATA API it’s really simple to obtain amazon product prices, seller and also buybox information from an amazon product.

Access product details which include product price, seller and buybox information

You can use the following curl to get all product information and look at the buybox field/object which contains the last known amazon product price and more meta information like wether it’s a prime, plus or amazons choice product (badges). There is also the ASID, amazon seller id for the seller and the sender (fulfillment) and the rrp (Recommended Retail Price). Note that the marketplace and ASIN are contained in the end of the url. You could also change the marketplace for example to US if you need information from the Amazon US marketplace.

curl -X "GET" "https://api.sellytics.com/amazon/products/DE/B07CNFV32C/v1" \
-H 'Authorization: Bearer YOUR-TOKEN-HERE' \
-H 'Content-Type: application/json'

Continue reading →

Top