# AliExpress Product Details Scraper (`piotrv1001/aliexpress-product-details-scraper`) Actor

The AliExpress Product Details Scraper extracts full product data from any AliExpress product URL — every variant with its price and stock, discounts, ratings, sales, shipping options andseller details — ideal for dropshipping, price monitoring and sourcing.

- **URL**: https://apify.com/piotrv1001/aliexpress-product-details-scraper.md
- **Developed by:** [FalconScrape](https://apify.com/piotrv1001) (community)
- **Categories:** E-commerce, Automation, Integrations
- **Stats:** 2 total users, 1 monthly users, 81.8% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 products

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/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

### 🚀 AliExpress Product Details Scraper

Get **everything on an AliExpress product page as clean JSON** — every variant with its own price and stock, the discount, rating and sales count, the shipping options for *your* country, and the seller's track record. Paste one or hundreds of product URLs (or bare product IDs), pick a ship-to country and currency, and download the result as JSON, CSV or Excel, or pull it straight from the [Apify API](https://docs.apify.com/api/v2).

This is the natural second step after the [AliExpress Listings Scraper](https://apify.com/piotrv1001/aliexpress-listings-scraper): search gives you the candidates, this Actor gives you the full record for each one — 100+ variants, per-variant stock, shipping fee and delivery window, seller rating — in a single row per product.

### ✨ Features

- 🎨 **Every variant** — each SKU with its attributes (`Color`, `Size`, `Ships From`…), sale price, original price, stock and purchase limit.
- 💰 **Real prices for your market** — choose the ship-to country and currency; prices, availability and shipping are calculated for that destination, exactly as a shopper there would see them.
- 🚚 **Shipping options** — carrier, fee (or free), ship-from warehouse, delivery window in days and estimated delivery dates, tracking availability.
- ⭐ **Ratings and demand signals** — star rating, review count, "10,000+ sold", total available stock, discount percentage.
- 🏪 **Seller details on every row** — store name, ID and URL, store rating, positive-feedback rate, items sold in the last 180 days, seller country and store opening date.
- 📐 **Full specifications** — the complete attribute table (material, capacity, model, certifications…), category path, images, product video and downloadable manuals.
- 🌍 **Region-aware** — products that cannot be shipped to the chosen country are returned with `status: "unavailable_in_region"` instead of a silent failure, and are not charged.
- ⚡ **Fast and cheap** — one request per product, no browser, a few seconds per item; no residential proxies needed.

### 💡 Why use AliExpress Product Details Scraper?

- **Dropshipping catalog sync** — pull variants, stock and prices for the products in your store and refresh them on a schedule.
- **Price and stock monitoring** — track per-variant prices and availability over time for your own products or competitors'.
- **Sourcing and supplier vetting** — compare the same product across sellers using positive rate, 180-day sales and seller age.
- **Shipping cost research** — see real delivery fees and windows for each destination before you commit to a supplier.
- **Marketplace listing creation** — get titles, images, specification tables and variant matrices ready to map into Shopify, WooCommerce or Amazon.
- **AI and data pipelines** — structured product records ready for LLM enrichment, matching or embedding.

### 🛠️ How to use AliExpress Product Details Scraper

1. **Add product URLs** — paste links like `https://www.aliexpress.com/item/1005006959700436.html`. Bare product IDs work too. Combine it with the [AliExpress Listings Scraper](https://apify.com/piotrv1001/aliexpress-listings-scraper) to feed in search results.
2. **Pick the destination** — set the ship-to country (`US` by default) and currency (`USD` by default).
3. **Set a limit** — `maxItems` caps how many products are scraped (50 by default).
4. **Run the Actor** — from the Console, on a schedule, or via the API.
5. **Download your data** — export the dataset as JSON, CSV, Excel or XML, or send it to Google Sheets, Slack, Zapier, Make or your own webhook.

### 📥 Input

| Field                | Type    | Description                                                                                 |
| -------------------- | ------- | ------------------------------------------------------------------------------------------- |
| `productUrls`        | array   | **Required.** AliExpress product page URLs (or bare product IDs).                           |
| `shipTo`             | string  | Two-letter country code prices, availability and shipping are calculated for. Default `US`. |
| `currency`           | string  | Three-letter currency code for all prices. Default `USD`.                                   |
| `maxItems`           | integer | Maximum number of products to scrape. Default `50`.                                         |
| `proxyConfiguration` | object  | Proxy settings. The default works; residential proxies are not needed.                      |

Example input:

```json
{
    "productUrls": [
        { "url": "https://www.aliexpress.com/item/1005006959700436.html" },
        { "url": "https://www.aliexpress.com/item/1005006639944031.html" }
    ],
    "shipTo": "US",
    "currency": "USD",
    "maxItems": 50
}
```

### 📊 Sample output data

One record per product (arrays shortened here — a real record carries every image, attribute and variant):

```json
{
    "productId": "1005006959700436",
    "url": "https://www.aliexpress.com/item/1005006959700436.html",
    "status": "ok",
    "title": "QCY MeloBuds Pro ANC Bluetooth 5.3 Earphones Wireless 46dB Hybrid ANC Hi-Res LDAC Earbuds 6 Mic Headphones 34H In-Ear Detection",
    "currency": "USD",
    "price": {
        "min": 26.47,
        "max": 91.1
    },
    "originalPrice": {
        "min": 82.43,
        "max": 98.1
    },
    "discountPercent": 68,
    "rating": 4.8,
    "reviewCount": 6345,
    "sold": "10,000+ sold",
    "totalStock": 2069,
    "images": [
        "https://ae-pic-a1.aliexpress-media.com/kf/Sf3383a35bac041acad10e4c903fa6804V.jpg",
        "https://ae-pic-a1.aliexpress-media.com/kf/S2b5178dbf83a4032b28968c4c8fab7dfH.jpg"
    ],
    "video": "https://video.aliexpress-media.com/play/u/ae_sg_item/2227548615/p/1/e/6/t/10301/5000117320950.mp4",
    "categoryId": "63705",
    "categoryPath": "44/100000306/63705",
    "attributes": [
        {
            "name": "Department",
            "value": "Unisex-adult"
        },
        {
            "name": "High-concerned chemical",
            "value": "none"
        },
        {
            "name": "Material",
            "value": "PVC,ABS"
        }
    ],
    "skuProperties": [
        {
            "id": 14,
            "name": "Color",
            "values": [
                {
                    "id": 10,
                    "name": "BLACK",
                    "image": "https://ae-pic-a1.aliexpress-media.com/kf/Sf3383a35bac041acad10e4c903fa6804V.jpg",
                    "color": "#FF0000"
                },
                {
                    "id": 29,
                    "name": "WHITE",
                    "image": "https://ae-pic-a1.aliexpress-media.com/kf/Sd972ff9f572b486cab88b493d1d7d25ay.jpg",
                    "color": "#FFFFFF"
                }
            ]
        },
        {
            "id": 200007763,
            "name": "Ships From",
            "values": [
                {
                    "id": 201336100,
                    "name": "China Mainland",
                    "image": "",
                    "color": null
                },
                {
                    "id": 201336106,
                    "name": "United States",
                    "image": "",
                    "color": null
                }
            ]
        }
    ],
    "skus": [
        {
            "skuId": "12000045348692444",
            "attributes": {
                "Color": "Black with Case03",
                "Ships From": "Brazil"
            },
            "price": 81.44,
            "originalPrice": 88.44,
            "stock": 0,
            "maxBuyCount": 0,
            "available": false
        },
        {
            "skuId": "12000045348692445",
            "attributes": {
                "Color": "White with Case04",
                "Ships From": "Brazil"
            },
            "price": 81.44,
            "originalPrice": 88.44,
            "stock": 0,
            "maxBuyCount": 0,
            "available": false
        }
    ],
    "shipping": [
        {
            "method": "Aliexpress Selection Standard",
            "code": "CAINIAO_FULFILLMENT_STD",
            "fee": 0,
            "freeShipping": true,
            "shipFrom": "China",
            "shipTo": "US",
            "deliveryDaysMin": 12,
            "deliveryDaysMax": 16,
            "estimatedDelivery": "Sep. 08 \u2013 Sep. 12",
            "tracking": true
        }
    ],
    "descriptionUrl": "https://pdp.aliexpress-media.com/product/description/pc/v2/en_US/desc.htm?productId=1005006959700436&key=Se8ac2fbcca294eaab0b0ac089f8c77514.zip&token=5aa2686581c4074a742b8a2a50960cbc&sellerId=221859663",
    "documents": [
        {
            "type": "PDF",
            "url": "https://ae-pic-a1.aliexpress-media.com/kf/S70e7ebc46c1546058fc0b9b3262b293bz.pdf"
        }
    ],
    "store": {
        "id": "1100955127",
        "name": "QCY Official Store",
        "url": "https://www.aliexpress.com/store/1100955127",
        "sellerId": "221859663",
        "rating": 4.9,
        "positiveRate": "97.7%",
        "soldLast180Days": "90,000+",
        "country": "China",
        "openedAt": "2014-09-23 02:02:16",
        "topRatedSeller": false
    },
    "shipTo": "US",
    "scrapedAt": "2026-08-27T18:03:59.973Z"
}
```

### 💵 Pricing

You pay **$0.005 per product scraped** — one price for the full record with all variants, shipping options and seller details, however many variants the product has. Products that are unavailable in the chosen country or no longer exist are not charged. Apify platform usage is billed separately; a typical product costs a fraction of a cent in compute.

### ❓ FAQ

**Can I get prices in my own currency and shipping to my country?**
Yes — set `shipTo` and `currency`. Prices, stock and delivery options are calculated for that destination.

**Why is a product returned with `status: "unavailable_in_region"`?**
AliExpress does not sell that item to the chosen country. Try a different `shipTo`. These rows are free.

**Some variants show `"available": false` — why?**
The variant is sold out or cannot be bought from the chosen country. The record still lists it with its price so you can track when it comes back.

**How do I get reviews or search results?**
Use the [AliExpress Listings Scraper](https://apify.com/piotrv1001/aliexpress-listings-scraper) for keyword search and the [AliExpress Reviews Scraper](https://apify.com/piotrv1001/aliexpress-reviews-scraper) for customer reviews. All three share the same product URLs, so they chain together.

**Is this legal?**
The Actor only collects publicly available product information. Make sure your use complies with AliExpress's terms and the laws that apply to you.

Turn AliExpress product pages into structured data with the **AliExpress Product Details Scraper** today! 🚀

# Actor input Schema

## `productUrls` (type: `array`):

Product pages to scrape, e.g. https://www.aliexpress.com/item/1005006959700436.html. A bare product ID also works.

## `shipTo` (type: `string`):

Two-letter country code the prices, availability and shipping options are calculated for, e.g. US, GB, DE, BR.

## `currency` (type: `string`):

Three-letter currency code for all prices, e.g. USD, EUR, GBP.

## `maxItems` (type: `integer`):

Stop after this many products from the list.

## `proxyConfiguration` (type: `object`):

Proxy settings. The default works well; there is no need to switch to residential proxies for this Actor.

## Actor input object example

```json
{
  "productUrls": [
    {
      "url": "https://www.aliexpress.com/item/1005006959700436.html"
    },
    {
      "url": "https://www.aliexpress.com/item/1005006639944031.html"
    },
    {
      "url": "https://www.aliexpress.com/item/1005009383937691.html"
    }
  ],
  "shipTo": "US",
  "currency": "USD",
  "maxItems": 50,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `products` (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 = {
    "productUrls": [
        {
            "url": "https://www.aliexpress.com/item/1005006959700436.html"
        },
        {
            "url": "https://www.aliexpress.com/item/1005006639944031.html"
        },
        {
            "url": "https://www.aliexpress.com/item/1005009383937691.html"
        }
    ],
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("piotrv1001/aliexpress-product-details-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 = {
    "productUrls": [
        { "url": "https://www.aliexpress.com/item/1005006959700436.html" },
        { "url": "https://www.aliexpress.com/item/1005006639944031.html" },
        { "url": "https://www.aliexpress.com/item/1005009383937691.html" },
    ],
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("piotrv1001/aliexpress-product-details-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 '{
  "productUrls": [
    {
      "url": "https://www.aliexpress.com/item/1005006959700436.html"
    },
    {
      "url": "https://www.aliexpress.com/item/1005006639944031.html"
    },
    {
      "url": "https://www.aliexpress.com/item/1005009383937691.html"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call piotrv1001/aliexpress-product-details-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,piotrv1001/aliexpress-product-details-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/Ixza5JBkUM8J9XfAJ/builds/DfEUfB3jGFTCbVvdN/openapi.json
