Amazon Product Details API

Amazon product pages include a Product Details section containing technical and catalog information. Details are dynamic and vary by product category, and can include fields such as brand, manufacturer, product_dimensions, item_weight, asin, and best_sellers_rank.

When SerpApi encounters Product Details, they are added to the JSON output as the product_details object.


The API endpoint is https://serpapi.com/search?engine=amazon_product

Head to the playground for a live and interactive demo.

API Examples

Product Details overview

Product Details overview

JSON Example

{
  ...
  "product_details": {
    "brand": "Philips",
    "color": "Glossy Black (Ep 3341/ 50)",
    "product_dimensions": "9.68\"D x 17.04\"W x 14.6\"H",
    "special_feature": "AquaClean, Aroma seal, Guided descaling, Removable brew group",
    "coffee_maker_type": "Espresso Machine",
    "style": "NEW 3300 Series",
    "specific_uses_for_product": "Espresso",
    "included_components": "LatteGo storage lid",
    "operation_mode": "Fully Automatic",
    "voltage": "120.0",
    "model_name": "EP3341/50",
    "number_of_items": "1",
    "human_interface_input": "Touchscreen",
    "unit_count": "1.0 Count",
    "coffee_input_type": "whole_beans",
    "is_dishwasher_safe": "Yes",
    "manufacturer": "Philips",
    "power_source": "AC adapter",
    "upc": "196592000723",
    "item_weight": "17.63 pounds",
    "asin": "B0CZ4GN5YT",
    "item_model_number": "EP3341/50",
    "customer_reviews": "3.8 out of 5 stars",
    "rating": 3.8,
    "reviews": 2936,
    "best_sellers_rank": [
      {
        "text": "#22,746 in Home & Kitchen (See Top 100 in Home & Kitchen)",
        "extracted_rank": 22746,
        "link": "https://www.amazon.com/gp/bestsellers/home-garden/ref=pd_zg_ts_home-garden",
        "link_text": "See Top 100 in Home & Kitchen"
      },
      {
        "text": "#6 in Super-Automatic Espresso Machines",
        "extracted_rank": 6,
        "link": "https://www.amazon.com/gp/bestsellers/home-garden/14162671/ref=pd_zg_hrsr_home-garden",
        "link_text": "Super-Automatic Espresso Machines"
      }
    ],
    "date_first_available": "June 2, 2025"
  },
  ...
}

JSON structure overview

{
  "product_details": {
    "brand": "String - Brand of the product",
    "manufacturer": "String - Manufacturer of the product",
    "product_dimensions": "String - Size dimensions of the product",
    "item_weight": "String - Weight of the product",
    "item_model_number": "String - Model number of the product",
    "color": "String - Color of the product",
    "asin": "String - Amazon Standard Identification Number",
    "upc": "String - Universal Product Code",
    "customer_reviews": "String - Customer rating text (e.g., '3.8 out of 5 stars')",
    "rating": "Float - Average rating of the product",
    "reviews": "Integer - Number of reviews for the product",
    "best_sellers_rank": [
      {
        "text": "String - Best seller rank text",
        "extracted_rank": "Integer - Extracted best seller rank number",
        "link": "String - Link to the best seller rank category",
        "link_text": "String - Text for the best seller rank category link"
      }
    ],
    "date_first_available": "String - Date when the product first became available",
    "...": "String - Other product details (dynamic keys depending on product type)"
  }
}