A

Amazon Product Data API

Amazon product data without the complexity

Search Amazon products and get structured data: prices, ratings, reviews, images, and specs. Supports multiple Amazon locales.

Scraping & Data IntelligenceLive Dashboard4 endpoints

Endpoints

GET
/search

Search Amazon products

GET
/product/{asin}

Get product details by ASIN

GET
/reviews/{asin}

Get product reviews

Use Cases

Price comparison
Product research
Affiliate marketing
Dropshipping
Market analysis

Quick Start

quickstart.js
const response = await fetch(
  "https://amazon-products-by-helix-api.p.rapidapi.com/search",
  {
    method: "GET",
    headers: {
      "X-RapidAPI-Key": "YOUR_API_KEY",
      "X-RapidAPI-Host": "amazon-products-by-helix-api.p.rapidapi.com"
    }
  }
);
const data = await response.json();
console.log(data);

Related APIs