# Scrape AliExpress product details and reviews

**Use case:** 

Extract AliExpress product data at scale: title, pricing, images, seller info, and buyer reviews with ratings. Paste product URLs and run.

## Input

```json
{
  "productUrls": [
    "https://www.aliexpress.com/item/1005005055632892.html"
  ],
  "includeReviews": true,
  "maxReviewsPerProduct": 40,
  "country": "US",
  "currency": "USD",
  "language": "en",
  "concurrency": 5,
  "proxyConfig": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "id": {
    "label": "ID"
  },
  "title": {
    "label": "Title"
  },
  "price": {
    "label": "Price"
  },
  "originalPrice": {
    "label": "Original"
  },
  "currency": {
    "label": "Currency"
  },
  "discountPercent": {
    "label": "Discount %"
  },
  "rating": {
    "label": "Rating"
  },
  "reviewCount": {
    "label": "Reviews"
  },
  "ordersCount": {
    "label": "Orders"
  },
  "storeName": {
    "label": "Store"
  },
  "country": {
    "label": "Buyer Country"
  },
  "author": {
    "label": "Reviewer"
  },
  "text": {
    "label": "Review"
  },
  "mainImage": {
    "label": "Image"
  },
  "url": {
    "label": "URL"
  }
}
```

## About this Actor

This example demonstrates how to use [AliExpress Scraper Goat](https://apify.com/goat255/aliexpress-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/goat255/aliexpress-scraper) to learn more, explore other use cases, and run it yourself.