AliExpress Product Scraper | E-commerce Data Extraction
Powerful AliExpress product scraper that extracts detailed product data from search results and category pages. Get real-time pricing, sales data, and product information from AliExpress marketplace.
What it extracts
Every field below comes from the Actor’s published dataset schema.
| Field | Description | Type |
|---|---|---|
id | Product ID | text |
thumbnail | Product Image | image |
url | Product URL | link |
title | Product Name | text |
price | Price | number |
currency | Currency | text |
type | Product Type | text |
trade | Sales | text |
store | Store | object |
sourceUrl | Source URL | link |
Input parameters
Generated from the Actor’s input schema — the same fields the Apify console shows.
| Parameter | Type | Required | Description |
|---|---|---|---|
startUrls | array | Required | List of AliExpress search or category URLs to scrape. Search URLs (e.g. /w/wholesale-smartphone.html) and category URLs (e.g. /category/100003109/women-clothing.html) are auto-detected. |
maxItems | integer | Optional | Maximum number of product items to scrape per URL |
proxyConfiguration | object | Optional | Select proxies to be used by the scraper |
API access
Run this Actor from your own code over the Apify API.
{
"startUrls": [
{
"url": "https://www.aliexpress.com/w/wholesale-smartphone.html"
},
{
"url": "https://www.aliexpress.com/category/100003109/women-clothing.html"
}
]
}curl -X POST \
"https://api.apify.com/v2/acts/logical_scrapers~aliexpress-scraper/run-sync-get-dataset-items?token=YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"startUrls":[{"url":"https://www.aliexpress.com/w/wholesale-smartphone.html"},{"url":"https://www.aliexpress.com/category/100003109/women-clothing.html"}]}'import { ApifyClient } from 'apify-client'
const client = new ApifyClient({ token: 'YOUR_API_TOKEN' })
const run = await client.actor('logical_scrapers~aliexpress-scraper').call({
"startUrls": [
{
"url": "https://www.aliexpress.com/w/wholesale-smartphone.html"
},
{
"url": "https://www.aliexpress.com/category/100003109/women-clothing.html"
}
]
})
const { items } = await client.dataset(run.defaultDatasetId).listItems()
console.log(items)from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("logical_scrapers~aliexpress-scraper").call(run_input={
"startUrls": [
{
"url": "https://www.aliexpress.com/w/wholesale-smartphone.html",
},
{
"url": "https://www.aliexpress.com/category/100003109/women-clothing.html",
},
],
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)Runs are executed on Apify. Create an API token in your Apify account, then call the Actor over REST or with the official client for your language. The same input object works in the Apify console, so you can test interactively before automating.
Pricing
Data not currently verified. This Actor's pricing model is not declared in our source repository.
Current rates are published on the Apify listing and can change, so they are not duplicated here. See pricing on Apify
Reliability
Measured across all public Goldmine Actors on Apify, 2026-08-24. This is an account-level figure, not a per-Actor benchmark — per-Actor speed and completeness benchmarks are not yet published. Source.
Used for
Workflows this Actor is part of, and the other scrapers it chains with.