# Amazon Product Description (`pintostudio/amazon-product-description`) Actor

The Amazon Product Description Actor is a powerful tool that allows you to extract detailed product information from Amazon product pages.

- **URL**: https://apify.com/pintostudio/amazon-product-description.md
- **Developed by:** [Pinto Studio](https://apify.com/pintostudio) (community)
- **Categories:** E-commerce, Social media, Other
- **Stats:** 9 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $20.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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 Description Actor Documentation

### Introduction

The Amazon Product Description Actor is a powerful tool that allows you to extract detailed product information from Amazon product pages. This actor scrapes essential details such as pricing, features, specifications, ratings, and more, transforming them into structured JSON data for your use.

This documentation will guide you through setting up and using the actor, even if you're new to Apify or web scraping.

### What This Actor Does

The actor takes an Amazon product URL as input and returns comprehensive product data including:

- Basic product information (title, ASIN, brand)
- Current pricing and deals
- Customer ratings and review count
- Product availability
- Features and specifications
- Images
- Color/style variants
- Seller information
- Shipping details
- And more!

### Prerequisites

- An Apify account (register at [apify.com](https://apify.com))
- Basic understanding of JSON format

### Getting Started

#### Step 1: Access the Actor

1. Log in to your Apify account
2. Navigate to the Amazon Product Description Actor page
3. Click "Try Actor" to test it without deploying

#### Step 2: Configure Input

The actor requires a simple JSON input:

```json
{
  "productUrl": "https://www.amazon.com/your-product-url"
}
````

If no URL is provided, the actor will use a default example URL.

#### Step 3: Run the Actor

Click the "Run" button to start the actor. The actor will:

1. Visit the specified Amazon product page
2. Extract all available product data
3. Structure the data into JSON format
4. Save the results to your Apify storage

#### Step 4: View Results

Once the run completes:

1. Go to the "Storage" tab
2. Find your run in the "Dataset" section
3. View or download the extracted data in JSON format

### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| productUrl | String | Yes | The full URL of the Amazon product page you want to scrape |

### Output Data Structure

The actor returns a comprehensive JSON object with the following structure:

```json
{
  "asin": "B0BRKPVZB4",
  "title": "Product title...",
  "prices": {
    "price": { "currency": "$", "value": 43.99, "formatted": "$43.99" },
    "regular_price": { ... },
    "deal_price": { ... },
    "prime_with_price": { ... },
    "price_without_prime": { ... }
  },
  "rating": "4.4",
  "review_count": 23236,
  "purchase_count": "10K+ bought in past month",
  "availability": "In Stock Only 2 left in stock - order soon.",
  "features": [ "Feature 1", "Feature 2", ... ],
  "main_image": "https://image-url.jpg",
  "images": [ "url1", "url2", ... ],
  "variants": [ { ... variant details ... } ],
  "brand": "Brand name",
  "categories": [ { ... category details ... } ],
  "specifications": { ... detailed specs ... },
  "prime_eligible": false,
  "amazon_choice": true,
  "best_seller": false,
  "shipping": { ... shipping details ... },
  "seller": { ... seller info ... },
  "source_url": "original-url",
  "timestamp": "2025-04-18T12:35:39.836Z"
}
```

### Use Cases

- Price monitoring and comparison
- Product research and analysis
- E-commerce data enrichment
- Market research
- Building product catalogs
- Competitive analysis

### Integration Examples

#### Using with Node.js

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

const client = new ApifyClient({
    token: 'YOUR_API_TOKEN',
});

const input = {
    productUrl: 'https://www.amazon.com/your-product-url',
};

// Run the actor and wait for it to finish
const run = await client.actor('pintostudio/amazon-product-description').call(input);

// Fetch and print actor results
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log('Products:', items);
```

#### Using with Python

```python
from apify_client import ApifyClient

client = ApifyClient(token='YOUR_API_TOKEN')

run_input = {
    'productUrl': 'https://www.amazon.com/your-product-url'
}

## Run the actor and wait for it to finish
run = client.actor('pintostudio/amazon-product-description').call(run_input=run_input)

## Fetch and print actor results
items = client.dataset(run['defaultDatasetId']).list_items().items
print('Products:', items)
```

### Example Output

Here's a sample of what the extracted data might look like for a Bluetooth speaker:

```json
{
  "asin": "B0BRKPVZB4",
  "title": "Bluetooth Speaker with HD Sound, Portable Wireless, IPX5 Waterproof, Up to 20H Playtime, TWS Pairing, BT5.3...",
  "prices": {
    "price": {"currency": "$", "value": 43.99, "formatted": "$43.99"},
    "prime_with_price": {"currency": "$", "value": 24.61, "formatted": "$24.61"}
  },
  "rating": "4.4",
  "review_count": 23236,
  "availability": "In Stock Only 2 left in stock - order soon.",
  "features": [
    "Immersive Sound Experience & Dual Connectivity",
    "Tough & Weather-Resistant",
    "Long-lasting Playtime & Extended Bluetooth Connectivity",
    "Vibrant Light Effects",
    "Everything You Need"
  ],
  "specifications": {
    "Model Name": "C27C",
    "Speaker Type": "Built-In",
    "Battery Life": "24 Hours",
    "Is Waterproof": "True",
    "Maximum Range": "33 Feet"
  }
}
```

### Limitations

- Some product information may vary based on region, user account, or time of scraping

### Troubleshooting

If you encounter issues:

1. **Actor fails to run**: Verify the product URL is valid and accessible
2. **Missing data**: Some products may not have all fields available (e.g., no variants)

### Best Practices

- Use the actor for legitimate research purposes
- Don't make excessive concurrent requests to Amazon
- Consider adding delays between requests if running multiple times

### Support

If you need assistance with this actor:

- Check the Apify documentation at [docs.apify.com](https://apify.com/pintostudio/amazon-product-description)
- Contact us through our main page
- Contact us via Telegram: @pintoflow

Happy coding!

# Actor input Schema

## `productUrl` (type: `string`):

The URL of product you want to get the data from.

## Actor input object example

```json
{
  "productUrl": "https://www.amazon.com/Automatic-Skeleton-Wristwatches-Japanese-Mechanical/dp/B0982XYMTY/ref=sr_1_2_sspa?_encoding=UTF8&sr=8-2-spons&sp_csd=d2lkZ2V0TmFtZT1zcF9hdGY"
}
```

# 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 = {
    "productUrl": "https://www.amazon.com/Automatic-Skeleton-Wristwatches-Japanese-Mechanical/dp/B0982XYMTY/ref=sr_1_2_sspa?_encoding=UTF8&sr=8-2-spons&sp_csd=d2lkZ2V0TmFtZT1zcF9hdGY"
};

// Run the Actor and wait for it to finish
const run = await client.actor("pintostudio/amazon-product-description").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 = { "productUrl": "https://www.amazon.com/Automatic-Skeleton-Wristwatches-Japanese-Mechanical/dp/B0982XYMTY/ref=sr_1_2_sspa?_encoding=UTF8&sr=8-2-spons&sp_csd=d2lkZ2V0TmFtZT1zcF9hdGY" }

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

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

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

```

## CLI example

```bash
echo '{
  "productUrl": "https://www.amazon.com/Automatic-Skeleton-Wristwatches-Japanese-Mechanical/dp/B0982XYMTY/ref=sr_1_2_sspa?_encoding=UTF8&sr=8-2-spons&sp_csd=d2lkZ2V0TmFtZT1zcF9hdGY"
}' |
apify call pintostudio/amazon-product-description --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=pintostudio/amazon-product-description",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Amazon Product Description",
        "description": "The Amazon Product Description Actor is a powerful tool that allows you to extract detailed product information from Amazon product pages.",
        "version": "0.0",
        "x-build-id": "yqEAd7KhythoDvYvU"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/pintostudio~amazon-product-description/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-pintostudio-amazon-product-description",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/pintostudio~amazon-product-description/runs": {
            "post": {
                "operationId": "runs-sync-pintostudio-amazon-product-description",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/pintostudio~amazon-product-description/run-sync": {
            "post": {
                "operationId": "run-sync-pintostudio-amazon-product-description",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "productUrl"
                ],
                "properties": {
                    "productUrl": {
                        "title": "Product URL",
                        "type": "string",
                        "description": "The URL of product you want to get the data from."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
