YepAPI
Amazon API

Product Details

Get full product details for any Amazon ASIN — title, description, images, pricing, offer box, and specs.

POST/v1/amazon/product
$0.02/call

Usage

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

ParameterTypeRequiredDescriptionDefault
asinstringYesAmazon Standard Identification Number (e.g. B07ZPKBL9V)
countrystringNoISO alpha-2 country codeUS

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

FieldTypeDescription
okbooleanWhether the request succeeded
data.data.asinstringProduct ASIN
data.data.product_titlestringFull title as shown on Amazon
data.data.product_pricestringCurrent price (formatted or numeric string)
data.data.product_original_pricestring | nullMSRP if discounted
data.data.delivery_pricestringShipping cost (e.g. "FREE")
data.data.currencystringISO currency code
data.data.product_bylinestringSeller/brand byline
data.data.product_star_ratingstringAverage rating
data.data.product_num_ratingsnumberRating count
data.data.product_num_offersnumberNumber of third-party offers
data.data.product_availabilitystringStock status message
data.data.product_conditionstringNew, Refurbished - Excellent, etc.
data.data.offer_box_pricestringBuy-box price
data.data.is_primebooleanPrime-eligible
data.data.sales_volumestring | nulle.g. "200+ bought in past month"
data.data.about_productstring[]Bullet-point feature list
data.data.product_descriptionstringLong description
data.data.product_informationobjectKey/value spec map (OS, RAM, color, etc.)

On this page