Amazon Product Item Specifications API

Amazon product pages display Item Specifications containing key product attributes. Specifications are dynamic and vary by product category, and can include fields such as brand, capacity, color, and product_dimensions.

When SerpApi encounters Item Specifications, they are added to the JSON output as the item_specifications object.


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

Head to the playground for a live and interactive demo.

API Examples

Item Specifications overview

Item Specifications overview

JSON Example

{
  ...
  "item_specifications": {
    "brand": "Philips",
    "capacity": "3.8 Pounds",
    "color": "Black",
    "product_dimensions": "10\"D x 17\"W x 15\"H",
    "special_feature": "Integrated Coffee Grinder, Milk Frother, Removable Tank, Water Filter"
  },
  ...
}

JSON structure overview

{
  "item_specifications": { // keys are dynamic depending on the product (e.g. brand, capacity, color, product_dimensions, etc)
    "brand": "String - Brand of the product",
    "capacity": "String - Capacity of the product",
    "color": "String - Color of the product",
    "product_dimensions": "String - Dimensions of the product",
    "...": "String - Other product specifications"
  }
}