Scrapingdog

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/product

API Parameters

🔑

Scrapingdog Parameters

  • api_key Required
    Your personal API key. Available on your dashboard.

    Type: String
🛒

Product

  • asin Required
    This is the Amazon product ID (ASIN). Found in the product URL (e.g., B00AP877FS).

    Type: String
  • domain Required
    The 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

  • country Required
    ISO 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: String
  • language Optional
    Standard ISO 639-1 language codes (e.g., en, de, fr) to specify the language for product data.

    Type: String
  • postal_code Optional
    To 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"
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!"
    }
  ]
}