# Amazon Product Details by ASIN

**Use case:** 

Turn a single Amazon ASIN into a full product record. Paste an ASIN like B00091S3K4 into Params and get 45 fields per item — title, price, list_price, discount, rating, BSR, brand, seller, images, variants, about_item and availability. No Amazon API key or login needed. Export to JSON, CSV or Excel.

## Input

```json
{
  "Params": [
    "B07J2Z5DBM"
  ],
  "website": "amazon.com",
  "language": "default",
  "currency": "default",
  "deliverTo": "US",
  "zipCode": "10010"
}
```

## Output

```json
{
  "search_source": {
    "label": "Input (ASIN / URL)",
    "format": "text"
  },
  "asin": {
    "label": "ASIN",
    "format": "text"
  },
  "product_url": {
    "label": "Product URL",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "brand_name": {
    "label": "Brand Name",
    "format": "text"
  },
  "brand_page_url": {
    "label": "Brand Page URL",
    "format": "text"
  },
  "breadcrumbs": {
    "label": "Breadcrumbs",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "price_value": {
    "label": "Price Value",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "list_price": {
    "label": "List Price",
    "format": "text"
  },
  "discount_percent": {
    "label": "Discount",
    "format": "text"
  },
  "unit_price": {
    "label": "Unit price",
    "format": "text"
  },
  "subscribe_save_price": {
    "label": "Subscribe & Save price",
    "format": "text"
  },
  "coupon": {
    "label": "Coupon",
    "format": "text"
  },
  "rating_stars": {
    "label": "Rating Stars",
    "format": "text"
  },
  "rating_count": {
    "label": "Rating Count",
    "format": "text"
  },
  "rating_distribution": {
    "label": "Rating Distribution",
    "format": "object"
  },
  "best_sellers_rank": {
    "label": "Best Sellers Rank",
    "format": "text"
  },
  "recent_purchases": {
    "label": "Recent Purchases",
    "format": "text"
  },
  "badge": {
    "label": "Badge",
    "format": "text"
  },
  "default_variant": {
    "label": "Default Variant",
    "format": "array"
  },
  "variants": {
    "label": "Variants",
    "format": "array"
  },
  "availability": {
    "label": "Availability",
    "format": "text"
  },
  "delivery_date": {
    "label": "Delivery Date",
    "format": "text"
  },
  "fastest_delivery_date": {
    "label": "Fastest Delivery Date",
    "format": "text"
  },
  "ships_from": {
    "label": "Ships from",
    "format": "text"
  },
  "seller_name": {
    "label": "Seller Name",
    "format": "text"
  },
  "seller_page_url": {
    "label": "Seller Page URL",
    "format": "text"
  },
  "returns": {
    "label": "Returns",
    "format": "text"
  },
  "other_sellers": {
    "label": "Other sellers",
    "format": "object"
  },
  "images": {
    "label": "Images",
    "format": "array"
  },
  "videos": {
    "label": "Videos",
    "format": "array"
  },
  "about_item": {
    "label": "About Item",
    "format": "text"
  },
  "product_information": {
    "label": "Product information",
    "format": "object"
  },
  "model_number": {
    "label": "Model Number",
    "format": "text"
  },
  "manufacturer": {
    "label": "Manufacturer",
    "format": "text"
  },
  "whats_in_the_box": {
    "label": "What's in the box",
    "format": "array"
  },
  "important_information": {
    "label": "Important information",
    "format": "object"
  },
  "product_description": {
    "label": "Product Description",
    "format": "text"
  },
  "manufacturer_description": {
    "label": "Manufacturer description",
    "format": "text"
  },
  "customer_review_summary": {
    "label": "Customer Review Summary",
    "format": "text"
  },
  "customer_review_aspects": {
    "label": "Customer review aspects",
    "format": "array"
  },
  "top_reviews": {
    "label": "Top reviews",
    "format": "array"
  },
  "scrape_time": {
    "label": "Scrape Time",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Amazon Product Details Scraper](https://apify.com/delicious_zebu/amazon-product-details-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/delicious_zebu/amazon-product-details-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/delicious_zebu/amazon-product-details-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
