Amazon API
Product Details
Get full product details for any Amazon ASIN — title, description, images, pricing, offer box, and specs.
POST
$0.02/call/v1/amazon/productUsage
const res = await fetch('https://api.yepapi.com/v1/amazon/product', {
method: 'POST',
headers: {
'x-api-key': 'YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({ asin: 'B07ZPKBL9V', country: 'US' }),
});
const { data } = await res.json();
console.log(data);curl -X POST https://api.yepapi.com/v1/amazon/product \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"asin": "B07ZPKBL9V", "country": "US"}'import requests
res = requests.post(
"https://api.yepapi.com/v1/amazon/product",
headers={"x-api-key": "YOUR_API_KEY"},
json={"asin": "B07ZPKBL9V", "country": "US"},
)
print(res.json()["data"])Request Body
| Parameter | Type | Required | Description | Default |
|---|---|---|---|---|
asin | string | Yes | Amazon Standard Identification Number (e.g. B07ZPKBL9V) | — |
country | string | No | ISO alpha-2 country code | US |
Response
{
"ok": true,
"data": {
"status": "OK",
"request_id": "56ba58ed-368d-4cf5-8322-6e34a7d0e3d6",
"parameters": { "asin": "B07ZPKBL9V", "country": "US" },
"data": {
"asin": "B07ZPKBL9V",
"product_title": "Apple iPhone 11, 64GB, PRODUCT RED - Unlocked (Renewed)",
"product_price": "169.00",
"product_original_price": "$174.64",
"delivery_price": "FREE",
"currency": "USD",
"country": "US",
"domain": "www.amazon.com",
"product_byline": "Visit the Amazon Renewed Store",
"product_star_rating": "4.2",
"product_num_ratings": 59992,
"product_url": "https://www.amazon.com/dp/B07ZPKBL9V",
"product_photo": "https://m.media-amazon.com/images/I/514k7uOBMwL._AC_SL1000_.jpg",
"product_num_offers": 33,
"product_availability": "Only 16 left in stock - order soon.",
"product_condition": "Refurbished - Excellent",
"offer_box_title": "Refurbished - Good",
"offer_box_price": "$159.00",
"is_best_seller": false,
"is_amazon_choice": false,
"is_prime": false,
"sales_volume": "200+ bought in past month",
"about_product": [
"Unlocked and compatible with any carrier of choice on GSM and CDMA networks.",
"Tested for battery health and guaranteed minimum 80% capacity.",
"Passed a full diagnostic test ensuring like-new functionality."
],
"product_description": "The iPhone 11 features a 6.1-inch LCD 'Liquid Retina HD Display' at 326ppi with True Tone and wide color support.",
"product_information": {
"Operating System": "iOS 16",
"RAM Memory Installed": "4 GB",
"Memory Storage Capacity": "64 GB",
"Color": "(PRODUCT) RED",
"Form Factor": "Smartphone"
}
}
}
}Response Fields
| Field | Type | Description |
|---|---|---|
ok | boolean | Whether the request succeeded |
data.data.asin | string | Product ASIN |
data.data.product_title | string | Full title as shown on Amazon |
data.data.product_price | string | Current price (formatted or numeric string) |
data.data.product_original_price | string | null | MSRP if discounted |
data.data.delivery_price | string | Shipping cost (e.g. "FREE") |
data.data.currency | string | ISO currency code |
data.data.product_byline | string | Seller/brand byline |
data.data.product_star_rating | string | Average rating |
data.data.product_num_ratings | number | Rating count |
data.data.product_num_offers | number | Number of third-party offers |
data.data.product_availability | string | Stock status message |
data.data.product_condition | string | New, Refurbished - Excellent, etc. |
data.data.offer_box_price | string | Buy-box price |
data.data.is_prime | boolean | Prime-eligible |
data.data.sales_volume | string | null | e.g. "200+ bought in past month" |
data.data.about_product | string[] | Bullet-point feature list |
data.data.product_description | string | Long description |
data.data.product_information | object | Key/value spec map (OS, RAM, color, etc.) |