Amazon Product Related Products API

Amazon product pages may display Related Products as alternatives or complements to the current product, including both organic and sponsored recommendations. Each result can include title, price, rating, reviews, and delivery information.

When SerpApi encounters Related Products, they are added to the JSON output as the related_products array.


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

Head to the playground for a live and interactive demo.

API Examples

JSON structure overview

{
  "related_products": [
    {
      "position": "Integer - Position of the related product on the page",
      "asin": "String - Amazon Standard Identification Number of the related product",
      "title": "String - Title of the related product",
      "link": "String - Link to the related product",
      "link_clean": "String - Clean product link without tracking parameters",
      "serpapi_link": "String - URL to SerpApi search",
      "sponsored": "Boolean - Whether the product is sponsored",
      "badges": [
        "String - Product badges (e.g., '#1 Best Seller')"
      ],
      "thumbnail": "String - Product thumbnail URL",
      "rating": "Float - Product rating",
      "reviews": "Integer - Number of reviews",
      "price": "String - Product price",
      "extracted_price": "Float - Extracted numeric price",
      "price_unit": "String - Price per unit",
      "extracted_price_unit": "Float - Extracted numeric price per unit",
      "prime": "Boolean - Whether Prime delivery is available",
      "climate_pledge_friendly": "Boolean - Whether product is Climate Pledge Friendly",
      "delivery": [
        "String - Delivery information"
      ]
    }
  ]
}