Amazon Product Scraper
The Amazon Product Scraper API retrieves comprehensive product data from any Amazon product page using its ASIN. Supports 20+ Amazon domains globally with localization options. Each successful request costs 1 API credit.
Endpoint:
https://api.scrapingdog.com/amazon/productAPI Parameters
🔑
Scrapingdog Parameters
api_keyRequiredYour personal API key. Available on your dashboard.
Type: String
🛒
Product
asinRequiredThis is the Amazon product ID (ASIN). Found in the product URL (e.g.,B00AP877FS).
Type: StringdomainRequiredThe TLD extension of the Amazon domain to scrape. Examples:com,in,de,fr,co.uk. For a complete list of supported TLDs, refer to Amazon Supported TLDs.
Type: String
🌍
Localization
countryRequiredISO country code for targeting a specific Amazon marketplace. Costs 5 credits per request except USA which costs 1 credit. Default:us. For a complete list of supported countries, refer to Amazon Supported Countries.
Type: StringlanguageOptionalStandard ISO 639-1 language codes (e.g.,en,de,fr) to specify the language for product data.
Type: Stringpostal_codeOptionalTo get data from a particular postal code.
Type: String
API Examples
Code to Integrate
curl "https://api.scrapingdog.com/amazon/product?api_key=APIKEY&domain=com&asin=B00AP877FS&country=us"
import requests params = { "api_key": "APIKEY", "domain": "com", "asin": "B00AP877FS", "country": "us" } response = requests.get("https://api.scrapingdog.com/amazon/product", params=params) data = response.json() print(data["title"], "-", data["price"])
const params = new URLSearchParams({ api_key: "APIKEY", domain: "com", asin: "B00AP877FS", country: "us" }); const res = await fetch(`https://api.scrapingdog.com/amazon/product?${params}`); const data = await res.json(); console.log(data.title, data.price);
<?php $url = 'https://api.scrapingdog.com/amazon/product?' . http_build_query([ 'api_key' => 'APIKEY', 'domain' => 'com', 'asin' => 'B00AP877FS', 'country' => 'us', ]); echo file_get_contents($url);
API Response
{
"title": "Cosmetic Brush Kit 5 Pcs Makeup Brush Travel Set Princessa - Pink",
"location": "Delivering to Los Angeles 90060",
"search_filter": "Beauty & Personal Care",
"product_information": {
"Brand Name": "BeautyEZ",
"Recommended Uses For Product": "Face Makeup",
"UPC": "716189022169",
"Skin Tone": "All",
"Unit Count": "1.0 Count",
"ASIN": "B00AP877FS",
"Customer Reviews": { "ratings_count": "4", "stars": "5.0" },
"Number of Pieces": "5",
"Color": "Pink",
"Item Form": "Wand"
},
"parent_asin": "B00AP877FS",
"description": "This set of 5 pieces makeup brushes provides an assortment of brushes for cosmetic applications. It is an important beauty essential for you.",
"is_prime_exclusive": false,
"aplus": true,
"main_image": "https://m.media-amazon.com/images/I/41BWGQGj93L._SY300_SX300_QL70_ML2_.jpg",
"images": [
"https://m.media-amazon.com/images/I/41BWGQGj93L.jpg",
"https://m.media-amazon.com/images/I/41tEyvqzdxL.jpg",
"https://m.media-amazon.com/images/I/41Bvv57t03L.jpg"
],
"product_category": "Beauty & Personal Care›Tools & Accessories›Makeup Brushes & Tools›Brush Sets",
"average_rating": "5.0",
"feature_bullets": [
"1 set of 5 pcs makeup brushes",
"Lash & Brow Comb, Sponge Tip Applicator",
"Powder Brush, Liner Brush and Eye Shadow Brush",
"Soft tips and Stylish design",
"4 to 4.2 inches each to easily fit in your travel case."
],
"total_reviews": "4",
"ratings_distribution": [
{ "rating": 5, "distribution": "100" },
{ "rating": 4, "distribution": "0" },
{ "rating": 3, "distribution": "0" },
{ "rating": 2, "distribution": "0" },
{ "rating": 1, "distribution": "0" }
],
"customer_reviews": [
{
"customer_name": "pagan chavez",
"rating": "5 out of 5 stars",
"review_title": "so cute!!",
"date": "Reviewed in the United States on June 3, 2014",
"review_snippet": "i love this its so cute and i really wanted something to match my vanity area... i did try them and i love the coverage that it gives.... who would have known that a cheap priced brush set would be so good!"
},
{
"customer_name": "Ginger",
"rating": "5 out of 5 stars",
"review_title": "Good price, good quality, five stars!",
"date": "Reviewed in the United States on November 30, 2013",
"review_snippet": "Very cute, great for price, and good quality. I ordered it standard delivery and it got here six days earlier than expected!"
}
]
}