AliExpress Product Data Extractor — Aliexpress Scraper
Extract product details, pricing, reviews, and seller information from AliExpress.
2 credits per request
~40s
6 runs
Features
Product Data
Prices
Reviews
Seller Info
Shipping
Use Cases
Dropshipping Research
Price Monitoring
Supplier Research
What This Tool Does
The AliExpress Data Extractor extracts product listings from AliExpress search and category pages. Pass a search URL and receive structured JSON with product titles, prices, ratings, order counts, seller information, and direct product links.
Input Modes
Search by URL
Pass an AliExpress search or category page URL. The data extractor follows pagination and returns all matching products up to your specified limit.
Sort Options
Use the sortBy parameter to control the order of results:
| Value | Description |
|---|---|
default | AliExpress default ranking (relevance + popularity) |
price_asc | Price from lowest to highest |
price_desc | Price from highest to lowest |
orders | Most orders first (highest demand) |
Sorting by orders is especially useful for finding best-selling products in a category.
Use Cases
- Price comparison — Find the cheapest suppliers for a specific product and track price fluctuations over time.
- Dropshipping research — Identify high-demand products with many orders and strong ratings before listing them on your store.
- Supplier discovery — Browse category pages to discover new suppliers and compare their product range and reputation.
- Market trends — Monitor which products are gaining order volume to spot emerging consumer trends.
- Catalogue building — Export product names, images, and descriptions for internal catalogues or comparison engines.
Data Fields
| Field | Type | Description |
|---|---|---|
| title | string | Product name as listed on AliExpress |
| price | number | Current price in USD (or local currency) |
| currency | string | Currency code (e.g. USD, EUR) |
| originalPrice | number | Original price before any discount |
| discountPercent | number | Discount percentage (0 if no discount) |
| rating | number | Average seller/product rating (0–5 scale) |
| orders | number | Total number of orders for this listing |
| seller | string | Store name of the AliExpress seller |
| productUrl | string | Direct link to the AliExpress product page |
| imageUrl | string | Main product image URL |
| shippingInfo | string | Shipping method and estimated delivery time |
Example Request
{
"startUrl": "https://www.aliexpress.com/wholesale?SearchText=bluetooth+earbuds",
"sortBy": "orders",
"maxResults": 30
}
Example Response
{
"title": "TWS Bluetooth 5.3 Wireless Earbuds Noise Cancelling Sport Headphones",
"price": 4.99,
"currency": "USD",
"originalPrice": 12.99,
"discountPercent": 62,
"rating": 4.7,
"orders": 15832,
"seller": "TechAudio Official Store",
"productUrl": "https://www.aliexpress.com/item/1005006123456789.html",
"imageUrl": "https://ae01.alicdn.com/kf/S1234567890.jpg",
"shippingInfo": "Free shipping · 15-35 days"
}
Limits and Tips
- Only AliExpress search (
/wholesale?SearchText=) and category URLs are supported. Individual product page URLs are not supported — use theproductUrlfrom search results for reference only. - Use
sortBy: "orders"to surface high-demand products; useprice_ascto find the cheapest suppliers. - Maximum 100 results per request. Use
maxResultsto limit cost. - Results are cached for up to 15 minutes. Re-running the same URL may return cached data.
- Processing takes 30–90 seconds depending on the number of results and current AliExpress load.
- Prices are returned in USD by default. Some listings may show local currency depending on your IP region.
On this page