2

I'm trying to retrieve reviews from AliExpress and was hoping there would be an API I could do this with but I haven't had any luck finding one.

I've looked through the documentation on their website (https://developers.aliexpress.com/en/doc.htm?docId=108088&docType=1) and the only mention to reviews I could find was on the aliexpress.postproduct.redefining.findaeproductbyidfordropshipper request (https://developers.aliexpress.com/en/doc.htm?docId=35321&docType=2) with properties evaluation_count and avg_evaluation_rating.

Perhaps there's another API that I should be looking at? I'd like to avoid having to scrape the data if possible.

Thank you!

Eugene Kim
  • 496
  • 4
  • 17

2 Answers2

3

I have written a scraper and made it available as an npm package. This would give you complete information about the product as json response. You would receive feedbacks, product images, description, product info including stock details etc.,

https://github.com/sudheer-ranga/aliexpress-product-scraper

https://www.npmjs.com/package/aliexpress-product-scraper

Install the npm package npm i aliexpress-product-scraper

Get product details:

const scrape = require('aliexpress-product-scraper');
const product = scrape('32958933105');

product.then(res => {
  console.log('Product Details JSON: ', res);
});
SpiritOfDragon
  • 1,404
  • 2
  • 15
  • 27
0

Just found this service. Haven't used it myself though. It's a paid service and a bit pricey in my opinion.

who_khiers
  • 101
  • 1
  • 6
  • 1
    While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. Please add some explanation and quotes. – Anna Dec 19 '19 at 23:56