AliExpress Product Scraper avatar

AliExpress Product Scraper

Pricing

from $10.00 / 1,000 results

Go to Apify Store
AliExpress Product Scraper

AliExpress Product Scraper

Extract product data from AliExpress item pages.

Pricing

from $10.00 / 1,000 results

Rating

0.0

(0)

Developer

Farhan Febrian Nauval

Farhan Febrian Nauval

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Categories

Share

Convert any AliExpress product URL into a complete, normalized product record — full SKU pricing matrix, variant tree, store profile, ratings, and shipping details.

Why use this actor

  • No AliExpress account or login required — works on fully public product pages.
  • Accepts a list of product URLs and processes them all in a single run.
  • Full SKU pricing matrix — every variant combination with sale price and original price.
  • Complete variant tree with color, size, and configuration axes plus image swatches.
  • Localized output — choose your ship-to country and currency at run time.
  • Stable JSON output ready to load into any database, spreadsheet, or data pipeline.

How it works

  1. You provide one or more AliExpress product URLs.
  2. The actor fetches the full product data for each URL, including all variants and SKUs.
  3. Localization settings (country, currency) are applied so prices reflect your target market.
  4. Store profile, shipping details, images, and specifications are extracted alongside pricing.
  5. Results stream into your Apify dataset as each product is processed — download as JSON, CSV, or Excel.

You don't need to manage any browsers or scrapers.

Input

{
"productUrls": [
{ "url": "https://www.aliexpress.com/item/1005006373553410.html" }
],
"country": "US",
"currency": "USD",
"maxConcurrency": 4,
"maxRequestRetries": 6,
"proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }
}
FieldTypeDescription
productUrlsarrayList of AliExpress product page URLs to scrape.
countrystringTwo-letter ISO country code for localized pricing and shipping (e.g. US, GB, DE). Default: US.
currencystringISO currency code for displayed prices (e.g. USD, EUR, GBP). Default: USD.
maxConcurrencyintegerMaximum parallel product requests. Default: 4.
maxRequestRetriesintegerPer-request retry budget before giving up. Default: 6.
proxyConfigurationobjectApify Proxy or your own proxy list. RESIDENTIAL group is recommended.

Output

One record per product URL:

{
"url": "https://www.aliexpress.com/item/1005007945497931.html",
"productId": "1005007945497931",
"title": "Wireless Bluetooth Earbuds TWS Noise Cancelling Earphones with Charging Case",
"price": 8.99,
"priceFormatted": "$8.99",
"originalPrice": 24.99,
"currency": "USD",
"reviewCount": 3842,
"orders": 12000,
"images": [
"https://ae-pic-a1.aliexpress-media.com/kf/S1abc123def.jpg",
"https://ae-pic-a1.aliexpress-media.com/kf/S2xyz789ghi.jpg"
],
"variants": [
{
"name": "Color",
"options": [
{ "name": "Black", "image": "https://ae-pic-a1.aliexpress-media.com/kf/Sblack.jpg" },
{ "name": "White", "image": null }
]
},
{
"name": "Version",
"options": [
{ "name": "Standard", "image": null },
{ "name": "Pro (ANC)", "image": null }
]
}
],
"skuPrices": [
{
"skuId": "12000038141901234",
"skuAttr": "14:200003528#Black;200007763:201441035#Standard",
"stock": 500,
"salable": true,
"price": 8.99,
"originalPrice": 24.99,
"priceFormatted": "$8.99"
},
{
"skuId": "12000038141905678",
"skuAttr": "14:200003528#Black;200007763:201441036#Pro (ANC)",
"stock": 243,
"salable": true,
"price": 12.99,
"originalPrice": 34.99,
"priceFormatted": "$12.99"
}
],
"store": {
"storeId": 1103856720,
"storeName": "TechGadgets Official Store",
"storeUrl": "https://www.aliexpress.com/store/1103856720",
"positiveRate": "97.8",
"openTime": "2019-06-14 08:22:00",
"topRated": false,
"storeRating": 4.8
},
"shipping": [
{
"fee": "free",
"freeShipping": true,
"fromCountry": "China",
"toCountry": "United States",
"deliveryProvider": "AliExpress Standard Shipping",
"deliveryDate": "Jun. 15",
"deliveryDayMin": 20,
"deliveryDayMax": 40
}
],
"freeShipping": true,
"scrapedAt": "2026-05-13T04:35:22Z"
}
FieldTypeDescription
urlstringThe product URL that was scraped.
productIdstringAliExpress product ID.
titlestringFull product title.
pricenumberCurrent sale price for the default SKU.
originalPricenumberPre-discount price for the default SKU.
currencystringISO currency code.
reviewCountintegerTotal number of reviews.
ordersintegerLifetime order count.
imagesarrayFull-resolution product gallery URLs.
variantsarrayVariant axes (color, size, etc.) with per-option image swatches.
skuPricesarrayPer-SKU combination prices, stock levels, and salability flags.
storeobjectStore name, URL, positive feedback rate, open date, and star rating.
shippingarrayAvailable shipping options with carrier, origin, delivery estimate, and fee.
freeShippingbooleantrue if at least one free shipping option is available.
scrapedAtstringISO 8601 timestamp of when the record was collected.

Other AliExpress Scrapers

ActorDescription
AliExpress Search ScraperKeyword search results across multiple pages.
AliExpress Category ScraperBrowse products by category ID.
AliExpress Product ScraperFull product detail from individual product URLs.
AliExpress Store ScraperStore profile and identity data from seller pages.
AliExpress Review ScraperPer-product review aggregates for every item in a store.