GET /amazon/product-details

Product Details

Get detailed information about a specific Amazon product by its ASIN, including pricing, ratings, images, and specifications.

Amazon Product Data API

Retrieve comprehensive details for a specific Amazon product using its ASIN. Returns pricing, ratings, images, description, specifications, and more.

HTTP Request

GET /amazon/product-details

Parameters

ParameterTypeRequiredDefaultDescription
asinstringYes-Amazon Standard Identification Number
marketplacestringNocomAmazon marketplace code
languagestringNo-Language code for results

Response

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
  "status": "OK",
  "request_id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
  "data": {
    "asin": "B0BSHF7WHW",
    "product_title": "Apple AirPods Pro (2nd Generation) Wireless Earbuds",
    "product_price": "$189.99",
    "product_original_price": "$249.00",
    "currency": "USD",
    "country": "US",
    "product_star_rating": "4.7",
    "product_num_ratings": 85420,
    "product_url": "https://www.amazon.com/dp/B0BSHF7WHW",
    "product_photo": "https://m.media-amazon.com/images/I/61SUj2aKoEL._AC_SL1500_.jpg",
    "product_photos": [
      "https://m.media-amazon.com/images/I/61SUj2aKoEL._AC_SL1500_.jpg",
      "https://m.media-amazon.com/images/I/71bhWgQK-cL._AC_SL1500_.jpg"
    ],
    "product_description": "AirPods Pro feature up to 2x more Active Noise Cancellation...",
    "about_product": [
      "Active Noise Cancellation reduces unwanted background noise",
      "Adaptive Transparency lets outside sounds in",
      "Personalized Spatial Audio with dynamic head tracking"
    ],
    "product_information": {
      "Brand": "Apple",
      "Model Name": "AirPods Pro",
      "Color": "White",
      "Form Factor": "In Ear",
      "Connectivity Technology": "Wireless"
    },
    "product_details": {
      "Manufacturer": "Apple Computer",
      "ASIN": "B0BSHF7WHW",
      "Item Weight": "1.79 ounces",
      "Date First Available": "September 22, 2022"
    },
    "customers_say": "Customers like the sound quality, comfort, and noise cancellation.",
    "category_path": [
      { "id": "electronics", "name": "Electronics" },
      { "id": "headphones", "name": "Headphones" }
    ],
    "product_availability": "In Stock",
    "is_best_seller": true,
    "is_prime": true,
    "sales_volume": "50K+ bought in past month",
    "delivery": "FREE delivery Thu, Mar 12"
  }
}

Code Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
import requests

url = "https://real-time-amazon-data-the-most-complete.p.rapidapi.com/amazon/product-details"

params = {
    "asin": "B0BSHF7WHW",
    "marketplace": "com"
}

headers = {
    "X-RapidAPI-Key": "YOUR_API_KEY",
    "X-RapidAPI-Host": "real-time-amazon-data-the-most-complete.p.rapidapi.com"
}

response = requests.get(url, headers=headers, params=params)
product = response.json()["data"]

print(f"Title: {product['product_title']}")
print(f"Price: {product['product_price']}")
print(f"Rating: {product['product_star_rating']} ({product['product_num_ratings']} ratings)")
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
const url = "https://real-time-amazon-data-the-most-complete.p.rapidapi.com/amazon/product-details";

const params = new URLSearchParams({
  asin: "B0BSHF7WHW",
  marketplace: "com"
});

const response = await fetch(`${url}?${params}`, {
  headers: {
    "X-RapidAPI-Key": "YOUR_API_KEY",
    "X-RapidAPI-Host": "real-time-amazon-data-the-most-complete.p.rapidapi.com"
  }
});

const { data: product } = await response.json();
console.log(`${product.product_title} - ${product.product_price}`);
1
2
3
4
5
curl -G "https://real-time-amazon-data-the-most-complete.p.rapidapi.com/amazon/product-details" \
  --data-urlencode "asin=B0BSHF7WHW" \
  --data-urlencode "marketplace=com" \
  -H "X-RapidAPI-Key: YOUR_API_KEY" \
  -H "X-RapidAPI-Host: real-time-amazon-data-the-most-complete.p.rapidapi.com"