# Scrape Product Reviews With Photos - AliExpress

**Use case:** 

Scrape AliExpress buyer reviews with stars, buyer, country, review text, date and photos. Export to JSON, CSV or Excel.

## Input

```json
{
  "searchTerms": [
    "mechanical keyboard"
  ],
  "sort": "default",
  "fourStarPlus": false,
  "choiceOnly": false,
  "freeShippingOnly": false,
  "shipToCountry": "US",
  "currency": "USD",
  "language": "en_US",
  "maxProducts": 20,
  "includeProductDetails": false,
  "includeReviews": true,
  "maxReviewsPerProduct": 20,
  "reviewSort": "photo",
  "emitStoreLeads": false,
  "deduplicateProducts": true,
  "monitorMode": false,
  "monitorKey": "default",
  "maxConcurrency": 3,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "productId": {
    "label": "Product ID",
    "format": "text"
  },
  "stars": {
    "label": "Stars",
    "format": "number"
  },
  "buyerName": {
    "label": "Buyer",
    "format": "text"
  },
  "buyerCountry": {
    "label": "Country",
    "format": "text"
  },
  "review": {
    "label": "Review",
    "format": "text"
  },
  "skuInfo": {
    "label": "Bought",
    "format": "text"
  },
  "reviewDate": {
    "label": "Date",
    "format": "text"
  },
  "photosCount": {
    "label": "Photos",
    "format": "number"
  }
}
```

## About this Actor

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