AliExpress Scraper
ECOMMERCEDEVELOPER TOOLS
AliExpress Scraper
Extract product data from AliExpress — titles, prices, seller information, ratings, reviews, images, and shipping details. Supports direct product URL scraping and keyword search with multi-region targeting.
What It Does
This actor scrapes AliExpress product pages and search listings using a headless browser to handle AliExpress's JavaScript-heavy pages and anti-bot protection. It returns structured product records ready for price comparison, competitive research, or e-commerce analytics.
Two modes of operation:
- Product URL mode — Provide a list of specific AliExpress product URLs to scrape directly
- Search mode — Provide a keyword query to discover and scrape products from search results
Use Cases
- Price monitoring — Track price changes across AliExpress product listings
- Competitive research — Analyze competitor product pricing and availability
- E-commerce sourcing — Find suppliers and compare product offerings
- Market research — Collect product data across categories for market analysis
- Catalog building — Build structured product catalogs from AliExpress listings
Input
| Field | Type | Description |
|---|---|---|
productUrls |
array | List of AliExpress product page URLs (e.g. https://www.aliexpress.com/item/123456.html) |
searchQuery |
string | Keyword search query (e.g. phone case, bluetooth headphones) |
countryCode |
string | Two-letter country code for pricing/shipping context (default: US) |
maxItems |
integer | Maximum number of product records to return |
Either productUrls or searchQuery must be provided.
Supported country codes: US, GB, DE, FR, ES, IT, NL, PL, RU, TR, PT, KO, JP, AR, HE
Output
Each record contains:
{
"product_id": "1005006499912987",
"product_url": "https://www.aliexpress.com/item/1005006499912987.html",
"title": "Phone Case for iPhone 15 Pro Max",
"price": "$3.99",
"original_price": "$7.99",
"currency": "USD",
"seller_name": "Tech Store Official",
"seller_id": "1234567",
"seller_url": "https://www.aliexpress.com/store/1234567",
"rating": 4.8,
"review_count": "2456",
"orders_count": "15000",
"images": ["https://ae01.alicdn.com/kf/...jpg"],
"shipping_info": "Free shipping",
"ships_from": "China",
"category": "Mobile Phone Accessories > Phone Cases",
"scraped_at": "2026-06-11T00:00:00.000Z"
}
Notes
- AliExpress uses client-side rendering and fingerprint-based anti-bot protection. This actor uses a headless browser with residential proxies to reliably access product pages.
- Prices and availability reflect the shipping destination set by
countryCode. - Search mode may be throttled by AliExpress captchas on some IP ranges — product URL mode provides more reliable results.
- Results are metered per-record via Pay-Per-Event pricing.