VOOZH about

URL: https://apify.com/crawlerbros/aliexpress-scraper

โ‡ฑ AliExpress Scraper ยท Apify


Pricing

from $3.00 / 1,000 results

Go to Apify Store

Scrape AliExpress search results, product details, store profiles, and customer reviews. Multi-region (com / us / ru / es / fr / de / it / nl / pt / pl / ar / tr / ko / ja / vi / th / id / he), multi-currency, with sort, price, rating, and ship-from/ship-to filters.

Pricing

from $3.00 / 1,000 results

Rating

3.9

(2)

Developer

๐Ÿ‘ Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

0

Bookmarked

33

Total users

15

Monthly active users

7 days ago

Last modified

Share

Scrape AliExpress search results, product listings, store profiles, and customer reviews โ€” across every regional storefront (global, US, RU, ES, FR, DE, IT, NL, PT, PL, AR, TR, KO, JA, VI, TH, ID, HE).

No login. No cookies required. The actor pulls the public SSR JSON state embedded in every search/store page and the public feedback.aliexpress.com/pc/searchEvaluation.do reviews JSON endpoint, with TLS-fingerprint-aware HTTP and an automatic Apify-residential-proxy fallback if AliExpress rate-limits the request.


Features

  • 5 modes:
    • search โ€” text query (e.g. "phone case") โ†’ up to 60 products per page, paginated.
    • byProduct โ€” fetch product detail records by numeric AliExpress item ID.
    • byStore โ€” fetch store profile records by numeric store ID.
    • byReviews โ€” fetch customer reviews for one or more product IDs.
    • byUrl โ€” paste any AliExpress URL (search, item, store, or feedback API URL); the actor auto-detects the kind and region.
  • 18 regional storefronts: global, United States, Russia, Spain, France, Germany, Italy, Netherlands, Portugal, Poland, Arabic, Turkey, Korea, Japan, Vietnam, Thailand, Indonesia, Hebrew.
  • 42 currencies: USD, EUR, GBP, JPY, CNY, RUB, BRL, INR, AUD, CAD, HKD, TWD, KRW, SGD, MXN, ARS, CLP, COP, PEN, UYU, ILS, TRY, AED, SAR, ZAR, PLN, CHF, SEK, NOK, DKK, CZK, HUF, RON, THB, VND, PHP, IDR, MYR, NZD, PKR, EGP, NGN.
  • 18 UI languages that AliExpress localizes responses in.
  • Filters: sort order, minimum/maximum price, minimum rating, ship-from country, ship-to country.
  • Optional review enrichment: attach up to 200 reviews to each product record.
  • Resilient fetcher: retries with exponential backoff; auto-escalates from datacenter IP to Apify residential proxy on rate-limit / connection-reset.

Sample input

{
"mode":"search",
"searchQuery":"phone case",
"region":"com",
"currency":"USD",
"language":"en_US",
"sortBy":"orders_desc",
"priceMin":0,
"priceMax":10,
"ratingMin":4,
"shipFrom":"CN",
"maxItems":50,
"maxPages":2
}

Sample output (mode=search)

{
"productId":"1005010155028387",
"title":"Bowknot Kitty Cat 3D Silicone Soft Phone Case For iPhone 17 Pro Max",
"productUrl":"https://www.aliexpress.com/item/1005010155028387.html",
"imageUrl":"https://ae-pic-a1.aliexpress-media.com/kf/Se78d305732ec4f97ba23188ebce0e368X.jpg",
"salePrice":{"amount":4.39,"currencyCode":"USD","formatted":"$4.39","discountPercent":55},
"originalPrice":{"amount":9.84,"currencyCode":"USD","formatted":"$9.84"},
"discountPercent":55,
"currencyCode":"USD",
"rating":4.9,
"ordersText":"5,000+ sold",
"ordersCount":5000,
"sellingPoints":[
"Free shipping over $10.00",
"New shoppers save $5.45"
],
"listedAt":"2025-10-14 00:00:00",
"productType":"natural",
"shipFromCountry":"CN",
"region":"com",
"recordType":"product",
"siteName":"AliExpress",
"scrapedAt":"2026-05-08T12:34:56.000+00:00"
}

Sample output (mode=byReviews)

{
"productId":"1005005883203176",
"reviewId":"5000043517822",
"rating":5,
"reviewText":"Excellent quality, fast shipping, recommend!",
"reviewerName":"M***a",
"reviewerCountry":"BR",
"reviewedAt":"2025-09-12 14:23:45",
"skuInfo":"Color:Black",
"imageUrls":["https://ae01.alicdn.com/kf/...jpg"],
"helpfulCount":4,
"recordType":"review",
"siteName":"AliExpress",
"scrapedAt":"2026-05-08T12:34:56.000+00:00"
}

Modes โ€” when to use which

ModeUse caseRequired input
searchDiscover products by free-text querysearchQuery
byProductEnrich known products with metadata (title, image, store id, rating)productIds
byStoreGet a store / seller profile (name, ID, follower count, opening date)storeIds
byReviewsPull customer reviews for known productsproductIds
byUrlOne-shot โ€” paste any AliExpress URL and the actor classifies iturls

FAQ

Do I need an AliExpress account or cookies? No. Every endpoint the actor uses is public.

Do I need a proxy? Not for typical use. The actor speaks AliExpress's TLS fingerprint via curl_cffi and works from datacenter IPs. If you hit rate limits, enable useProxy (or rely on autoEscalateOnBlock, which is on by default and switches the actor to Apify residential proxy mid-run).

Why is the product detail record sparser than the search-card record? AliExpress migrated product pages to client-side rendering โ€” the full product JSON is fetched via signed API calls after page load, which a stateless scraper can't replicate without cookies. The actor still surfaces title, canonical URL, image, store ID, and JSON-LD price/rating when AliExpress includes them in the SSR HTML. For the richest dataset, use mode=search (every search-card carries title + price + rating + sales count + selling points).

How does pricing work across regions? The currency and language inputs are sent via the aep_usuc_f cookie. AliExpress ultimately determines the currency server-side based on the exit IP's geolocation, so the returned currencyCode may differ from what you requested when requests are routed through a proxy in an unrelated country. Regional sub-domains (e.g. es.aliexpress.com) localize text but the same products appear across regions. For deterministic currency, enable useProxy with a residential proxy in a country that uses your target currency.

What happens if I set price min > price max? The filter is dropped with a log warning and the run continues without bounds โ€” no crash, no infinite loop.

Can I scrape a category? AliExpress's /category/{id}/... URLs redirect to the corresponding wholesale search; pass the category as a searchQuery (e.g. "cellphones") for the same effect.

How many records per page? 60 products per search page, up to 60 pages. Reviews are 20 per page; the actor paginates automatically up to your maxReviewsPerProduct cap.


Limitations

  • Product detail page is client-side rendered; only OG meta tags + JSON-LD (when present) are extracted. Use mode=search for the richest per-product fields.
  • Variation/SKU details (color, size, dimensions) are loaded via signed mtop calls after page load โ€” not captured.
  • Shipping calculation is per-buyer / per-IP and not surfaced in the SSR HTML.
  • AliExpress can rate-limit aggressive crawls; autoEscalateOnBlock mitigates this with residential proxy fallback. For sustained scraping, enable useProxy with a residential group up front.
  • Currency localisation is best-effort. The currency input is sent via the aep_usuc_f cookie, but AliExpress may override it based on the proxy IP's geolocation (e.g. an unrelated-country proxy can return prices in the local currency of the egress IP). For deterministic pricing, enable useProxy=true and configure a residential proxy in a country aligned with the requested currency.
  • Some regional storefronts (e.g. ja, ko, he) sometimes serve a CSR-only page that omits the _init_data_ JSON state used for parsing; in that case the run finishes with 0 records and a status message. The com, us, de, fr, es, it, nl, pt, pl, tr, ar, vi, th, id storefronts ship SSR JSON reliably. The ru region (aliexpress.ru) uses a different site structure and is redirected internally to www.aliexpress.com; use language=ru_RU alongside region=ru if you want Russian-language results on the global storefront.

You might also like

AliExpress Scraper 2026 โ€” Products, Prices, Reviews

cryptosignals/aliexpress-scraper

Scrape AliExpress product listings โ€” extract title, price, seller, rating, review count, shipping cost, and product URL. Bulk scraping. CSV/JSON output.

81

Amazon Seller Scraper

scraper-engine/amazon-seller-scraper

The Amazon Seller Data Extractor Scraper efficiently collects key seller information from Amazon, including store name, ratings, feedback, and product listings. Ideal for market research, competitor analysis, and eCommerce intelligence, it delivers accurate, structured data ready for API or export.

๐Ÿ‘ User avatar

Scraper Engine

31

Amazon Email Scraper - Enterprise Solution

contacts-api/amazon-contact-extractor

Collect seller contact emails with our Amazon Email Scraper. Extract business emails from Amazon sellers for sourcing, outreach, and lead generation.

Amazon Seller Info Scraper

jaybird/amazon-seller-info-scraper

Amazon Seller Info Scraper helps you extract Amazon seller data fast. Perfect for lead generation, competitive research, and seller analysis. Get Amazon seller info at scale with clean, structured results.

๐Ÿ‘ User avatar

Jaybird Technologies

86

Amazon Sellers Scraper

automation-lab/amazon-sellers-scraper

Scrape Amazon seller profiles โ€” name, ratings, feedback, business info, products count, and contact data from any seller storefront.

๐Ÿ‘ User avatar

Stas Persiianenko

13

Mass Amazon Email Scraper

scraper-mind/amazon-email-scraper

[๐—–๐—ต๐—ฒ๐—ฎ๐—ฝ๐—ฒ๐˜€๐˜ ๐—ฃ๐—ฟ๐—ถ๐—ฐ๐—ฒ] The Mass/Bulk Amazon Email Scraper lets you extract product details and seller emails from Amazon search results and product pages. Perfect for supplier outreach, market research, and business developmentโ€”fast, affordable, and accurate.

412

5.0

Amazon Seller Scraper

junglee/amazon-seller-scraper

Amazon scraper to extract seller information. You can scrape either categories or specific products.

1.8K

1.8

Amazon B2B Email Scraper

contacts-api/amazon-b2b-lead-generator-email-scraper

Generate supplier and seller leads with our Amazon B2B Email Scraper. Extract business emails from Amazon sellers for sourcing, outreach, and B2B lead generation.

Amazon Seller Scraper

axesso_data/amazon-seller-scraper

Our Amazon Seller Scraper retrieves real-time seller details from Amazon, including seller name, total reviews, product listings, contact details and more. Download the data in formats like JSON, CSV, Excel, XML or HTML. Fast, accurate, and perfect for market research and competitive analysis.

259

5.0

200K+ Amazon Sellers Email Leads

xmiso_scrapers/eu-amazon-sellers-email-leads

Database of scraped sellers from Amazon marketplaces with emails, phone numbers and other valuable data.