Retrieve detailed product information using Amazon Standard Identification Numbers (ASINs). This scraper is optimized to extract comprehensive data from Amazon product pages, enabling you to build enriched applications or perform in-depth analysis.

Extract product details using ASINs (Amazon Standard Identification Number), such as:

  • Product Title, Brand, and Description
  • Categories and Breadcrumb Hierarchies
  • Pricing (Including Discounts and Currency Information)
  • Product Dimensions, Weight, and Model Details
  • Ratings, Reviews, and Amazon Badges (e.g., Best Seller)
  • Availability Status and Seller Information
  • Related ASINs for cross-referencing
  • Images and Content for enriched product listings

Example Use Cases:

  • Price Tracking: Automatically track price changes for products of interest.
  • Competitor Analysis: Gather competitor product details to refine your strategy.

Supported Query Parameters

PARAMETERTYPEDEFAULTDESCRIPTION
asin requiredstringThe 10-character Amazon Standard Identification Number of the product. Example: B07FZ8S74R.
urlstringThe full Amazon product URL. Example: https://www.amazon.com/dp/B07FZ8S74R.
tldstring.comThe top-level domain of the Amazon website. Supported values: .com, .it, .de, etc.
countrystringusThe originating country for the product retrieval. Example: country=es.
outputstringjsonThe format of the response. Supported values: json, csv.

How to Setup

Request the product endpoint with the ASIN of the desired product:

https://ecommerce.api.zenrows.com/v1/targets/amazon/products/{asin}?apikey=YOUR_ZENROWS_API_KEY

Code Examples

Replace {asin} with the actual product ASIN code.

Response Example

{
    "amazon_choice": true,
    "availability_status": "In Stock",
    "badge": "Best Seller",
    "brand": "Amazon",
    "bs_category": "Smart Speakers",
    "bs_rank": 1,
    "buybox_seller": "Amazon.com",
    "category_breadcrumb": [
        "Electronics",
        "Smart Home",
        "Smart Speakers"
    ],
    "date_first_available": "2018-10-11",
    "description": "Echo Dot is a voice-controlled smart speaker with Alexa, perfect for any room.",
    "discount": "10% off",
    "final_price": 49.99,
    "images": [
        "https://m.media-amazon.com/images/I/515EDfBsGvL._AC_US40_.jpg"
    ],
    "ingredients": "Water, Glycerin, Fragrance",
    "is_available": true,
    "isbn10": "1234567890",
    "isbn13": "000-1234567890",
    "manufacturer": "Amazon",
    "model_number": "B07FZ8S74R",
    "number_of_sellers": 5,
    "parent_asin": "B07FZ8S74R",
    "plus_content": true,
    "price": 49.99,
    "price_before_discount": 59.99,
    "price_currency_code": "USD",
    "price_currency_symbol": "$",
    "product_dimensions": "3.9 x 3.9 x 1.7 inches",
    "product_name": "Echo Dot (3rd Gen) - Smart speaker with Alexa",
    "product_url": "https://www.amazon.com/dp/B07FZ8S74R",
    "rating": 4.7,
    "review_count": 21500,
    "root_bs_category": "Electronics",
    "root_bs_rank": 1,
    "sku": "B07FZ8S74R",
    "subcategory_rank": [
        {
            "subcategory_name": "Portable Speakers",
            "subcategory_rank": 1
        }
    ],
    "top_review": "This is the best smart speaker I've ever owned.",
    "upc": "0123456789012"
}

Troubleshooting and FAQs