# Amazon Product Details Scraper (`data_direct/amazon-product-scraper`) Actor

Get the full Amazon product page by ASIN: pricing, buy box, photos, specs, top reviews

- **URL**: https://apify.com/data\_direct/amazon-product-scraper.md
- **Developed by:** [Data Direct](https://apify.com/data_direct) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 runs

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Amazon Product Details Scraper

Get full details for an Amazon product by its 10-character ASIN — pricing, buy box with seller ID, availability, photos, videos, spec tables, rating breakdown per star, and top reviews.

### Features

- Real-time Amazon data — results are fetched live at run time, never cached or stale
- No login, cookies, or proxy configuration needed — just provide the input and run
- Each result is pushed as a separate dataset item, exportable as JSON, CSV, or Excel
- Fast: a typical run finishes in seconds

### Input

| Field | Type | Required | Description |
|---|---|---|---|
| `asin` | string | yes | 10-character Amazon ASIN (e.g. `B07ZPKN6YR`), as returned by Product Search |
| `country` | string | no | Marketplace country code (default: `us`) One of: us, au, br, ca, cn, fr, de, in, it, mx, nl, sg, es, tr, ae, gb, jp, sa, pl, se, be, eg, za, ie. |

### Pricing

This Actor is billed **per run** — a flat **$0.005 per run**.

- One run returns all matching results for your input, and costs $0.005 — whether it comes back with one result or hundreds.
- You’re only charged when a run succeeds. Failed runs are free.

### Example output

```json
{
  "product": {
    "asin": "B07ZPKN6YR",
    "title": "Apple iPhone 11, 64GB, Black - Unlocked (Renewed)",
    "item_highlight": "Fully unlocked, renewed and inspected, 64GB storage",
    "price": "$190.00",
    "original_price": "$249.00",
    "delivery_price": null,
    "minimum_order_quantity": null,
    "currency": "USD",
    "country": "US",
    "byline": "Visit the Amazon Renewed Store",
    "byline_link": "https://www.amazon.com/Amazon-Renewed/b/...",
    "rating": 4.2,
    "num_ratings": 57539,
    "url": "https://www.amazon.com/dp/B07ZPKN6YR",
    "slug": "Apple-iPhone-11-64GB-Black",
    "photo": "https://m.media-amazon.com/images/I/514k7uOBMwL._AC_SL1000_.jpg",
    "photos": [
      "https://m.media-amazon.com/images/I/514k7uOBMwL._AC_SL1000_.jpg"
    ],
    "videos": [],
    "user_uploaded_videos": [],
    "has_video": false,
    "num_offers": 47,
    "availability": "In Stock",
    "condition": "Buy New",
    "is_best_seller": false,
    "is_amazon_choice": false,
    "is_prime": false,
    "climate_pledge_friendly": false,
    "sales_volume": "2K+ bought in past month",
    "delivery": "FREE delivery Friday, June 6",
    "main_buy_box": {
      "title": "Buy New",
      "price": "$190.00",
      "seller": "iBlueberry",
      "seller_id": "A1B2C3D4E5F6G7",
      "seller_link": "https://www.amazon.com/gp/help/seller/at-a-glance.html/...",
      "return_policy": "30-day refund/replacement"
    },
    "buy_boxes": [
      {
        "title": "Buy New",
        "price": "$190.00"
      }
    ],
    "about": [
      "This phone is unlocked and compatible with any carrier of choice."
    ],
    "description": "The iPhone 11 features a 6.1-inch Liquid Retina display...",
    "product_information": {
      "Screen Size": "6.1 inches",
      "Color": "Black"
    },
  ... (truncated)
```

### About

Maintained by **Data Direct** — a small suite of fast, reliable Amazon and web-data scrapers. Each actor returns clean, structured results with no login, cookies, or proxy setup required. Have a question or a custom data need? Open an issue on this actor.

# Actor input Schema

## `asin` (type: `string`):

10-character Amazon ASIN (e.g. `B07ZPKN6YR`), as returned by Product Search

## `country` (type: `string`):

Marketplace country code (default: `us`)

## Actor input object example

```json
{
  "asin": "B07ZPKN6YR",
  "country": "us"
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "asin": "B07ZPKN6YR"
};

// Run the Actor and wait for it to finish
const run = await client.actor("data_direct/amazon-product-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "asin": "B07ZPKN6YR" }

# Run the Actor and wait for it to finish
run = client.actor("data_direct/amazon-product-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "asin": "B07ZPKN6YR"
}' |
apify call data_direct/amazon-product-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,data_direct/amazon-product-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/nr7eJbBvSyzPCJB8t/builds/5MJ6HiQdeTVz0YBe2/openapi.json
